Metadata-Version: 2.1
Name: py-ai-manager
Version: 0.0.4
Summary: A Python library to interact with AI models via API
Home-page: https://github.com/Mr-Ali-Jafari/ai_manager
Author: Ali Jafari
Author-email: riptt91@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: requests

# PY AI Manager

A Python library to connect to AI APIs.

## Installation

```bash
pip install py-ai-manager

```


# Usage:
```py
from py_ai_manager.core import PyAIManager

ai = PyAIManager(api_key="your_api_key", base_url="https://api.example.com")
response = ai.get_ai_response("Hello, how are you?", model="custom-model")
print(response)

```


