Metadata-Version: 2.1
Name: puter
Version: 0.0.1
Summary: A simple Python client for Puter AI API with GPT-4 and Claude support
Home-page: https://github.com/Nemyam/Puper-Python
Author: Nemyam
Author-email: nemyam0@gmail.com
Keywords: ai,gpt4,claude,puter,chatbot
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.25.0
Requires-Dist: rich>=10.0.0

# puter-ai ðŸ¤–

a simple python client for puter.ai api that lets u use gpt-4o-mini and claude models for free!

## installation
```
pip install puter
```

## usage
```python
from puter import ChatCompletion

response = ChatCompletion.create(
    messages=[{"role": "user", "content": "tell me a joke"}],
    model="gpt-4o-mini",
    driver="openai-completion",
    api_key="your-api-key"
)
```
