gptplus / README.md
NeBro8885's picture
Upload 3 files
af59f74 verified
# Русский чат-бот ИИ на Hugging Face
## Как запустить
1. Установить зависимости:
```
pip install -r requirements.txt
```
2. Запустить бота:
```
python app.py
```
## Доступ через API
После развертывания на Hugging Face Space, используйте токен:
```python
import requests
API_URL = "https://api-inference.huggingface.co/models/username/my_russian_ai"
headers = {"Authorization": "Bearer YOUR_API_TOKEN"}
def query(payload):
response = requests.post(API_URL, headers=headers, json=payload)
return response.json()
print(query({"inputs": "Привет, ИИ!"}))
```