Metadata-Version: 2.1
Name: brave-leo
Version: 0.1.1
Summary: Python wrapper for Brave's Leo AI chat functionality based on Llama
Home-page: https://github.com/KohnoseLami/brave-leo
Author: Kohnose Lami
Author-email: info@lami.zip
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests

# Brave Leo

"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.

## Installation

You can install "brave-leo" using pip:

```bash
pip install brave-leo
```

## Usage

Here's a quick example of how to use "brave-leo" to interact with Brave's Leo AI:

```python
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)
```

## License

This project is licensed under the MIT License - see the [LICENSE](https://github.com/KohnoseLami/Brave-Leo/blob/main/LICENSE) file for details.

## Contributing

Contributions are welcome! If you have suggestions or find issues, please feel free to open an issue or submit a pull request.
