"Brave Leo" is a Python module that provides access to Brave's Leo AI chat functionality based on Llama. With this module, you can easily integrate AI chat capabilities powered by Brave's Leo into your Python applications.
You can install "brave-leo" using pip:
pip install brave-leo
Here's a quick example of how to use "brave-leo" to interact with Brave's Leo AI:
Sync,
from brave_leo import Leo
# Initialize the Leo instance
leo = Leo()
# Ask to Leo and get a response
response = leo.ask('What is the weather like today?')
print("Leo:", response.completion)
Async,
import asyncio
from brave_leo import AsyncLeo
async def main():
# Initialize the Leo instance
leo = AsyncLeo()
# Ask to Leo and get a response
response = await leo.ask('What is the weather like today?')
print("Leo:", response.completion)
# Close Session
await leo.close()
asyncio.run(main())
This project is licensed under the MIT License - see the LICENSE file for details.
Contributions are welcome! If you have suggestions or find issues, please feel free to open an issue or submit a pull request.