beryl-chat-api / README.md
AIBRUH
Switch to FastAPI Docker Space — no Gradio/pydub Python 3.13 issue
d1ceaf4
|
Raw
History Blame Contribute Delete
507 Bytes
---
title: Beryl Chat API
emoji: 🤖
colorFrom: yellow
colorTo: gray
sdk: docker
pinned: true
license: mit
---
# Beryl Chat API
Raw FastAPI inference proxy for Beryl Desktop.
## API Usage
```
POST /predict
Content-Type: application/json
{
"data": [
"[{\"role\":\"user\",\"content\":\"Hello Eve\"}]",
"auto"
]
}
```
Returns:
```json
{
"data": ["{\"response\":\"Hello! I'm Eve...\",\"model\":\"Qwen2.5-7B-Instruct\",\"ok\":true}"]
}
```
Models: `auto`, `qwen`, `qwen7b`, `glm`, `hermes`