Metadata-Version: 2.4
Name: dai-neural
Version: 1.0.0
Summary: Библиотека для работы с нейросетью d.AI — бесплатный AI-помощник
Home-page: https://github.com/your-username/dai
Author: Дима
Author-email: your-email@example.com
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.28.0
Requires-Dist: numpy>=1.24.0
Provides-Extra: async
Requires-Dist: aiohttp>=3.8.0; extra == "async"
Provides-Extra: dev
Requires-Dist: pytest>=7.0.0; extra == "dev"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# dai-neural

Библиотека для работы с нейросетью d.AI — бесплатный AI-помощник.

## Установка

pip install dai-neural

## Быстрый старт

```python
from dai import DAIClient

client = DAIClient(api_key="ваш_ключ")
response = client.chat("Привет!")
print(response.answer)
