cleaned version

This commit is contained in:
JiriUhlir
2026-07-10 09:54:05 +02:00
parent 7a3f61c125
commit 5d2ba407f4
7 changed files with 104 additions and 180 deletions
+2 -3
View File
@@ -22,7 +22,7 @@ app/
openai_client.py # OpenAI Whisper + Chat Completions (httpx)
routers/
meta.py # /health, /version
transcribe.py # /transcribe/dual, /transcribe/combined
transcribe.py # /transcribe (vše najednou)
```
Žádné SDK — upstream API se volají přímo přes `httpx`, aby služba nebyla závislá na
@@ -39,8 +39,7 @@ OpenAPI `servers` i Swagger „Try it out“ míří na správný prefix.
|--------|-------|-------|
| GET | `/health` | Health check (200) |
| GET | `/version` | Verze + root_path |
| POST | `/transcribe/dual` | Deepgram + Whisper (dva texty) |
| POST | `/transcribe/combined` | dual + sloučený `merged` |
| POST | `/dual-with-merge` | Deepgram + OpenAI přepis + AI sloučení (vše najednou) |
Detaily viz [transcribe.md](transcribe.md).