Metadata-Version: 2.1
Name: chippapi
Version: 1.0.3
Summary: This is a simple python wrapper for [Chipp](https://chipp.ai/).
Home-page: https://github.com/skilledkitten/chippapi
Author: skilledkitten
Author-email: me@skilledkitten.dev
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.25.1

# ChippAPI
-> This is a simple python wrapper for [Chipp](https://chipp.ai/).

## Installation
```bash
pip install -i https://test.pypi.org/simple/ chippapi==1.0.3
```

## Usage
```python
import chippapi

chippapi.api_key = "YOUR_API_KEY"
chippapi.id = "YOUR_ID"

response = chippapi.chat(prompt="Hello, how are you?")
print(response)
```

## License
-> This project is licensed under the MIT license - see the [LICENSE](https://opensource.org/license/mit) for details.

