LXC-Frontend (FastAPI + HTML/JS): - Audio-Upload (MP3/WAV/M4A/MP4/OGG/FLAC, max. 500 MB) - SQLite Job-Store, BackgroundTask-Pipeline - Job-Liste mit Live-Status, Downloads (DOCX + JSON) - Mac-Health-Indicator im UI Mac-Worker (FastAPI): - /api/transcribe (lightning-whisper-mlx | faster-whisper | mock) - /api/summarize + /api/protocol via Ollama (llama3.1:8b) - /api/export/docx via python-docx Deploy: - systemd-Service, Nginx Reverse-Proxy - deploy/install.sh: idempotentes LXC-Setup Doku: README.md, lxc-frontend/README.md, mac-worker/README.md
49 lines
1.9 KiB
Python
49 lines
1.9 KiB
Python
from pathlib import Path
|
|
import httpx
|
|
from .config import settings
|
|
|
|
|
|
class MacClient:
|
|
def __init__(self, base_url: str | None = None, timeout: int | None = None):
|
|
self.base_url = (base_url or settings.mac_api_url).rstrip("/")
|
|
self.timeout = timeout or settings.mac_api_timeout
|
|
|
|
async def health(self) -> dict:
|
|
async with httpx.AsyncClient(timeout=10) as c:
|
|
r = await c.get(f"{self.base_url}/health")
|
|
r.raise_for_status()
|
|
return r.json()
|
|
|
|
async def transcribe(self, audio_path: Path, language: str = "de") -> dict:
|
|
async with httpx.AsyncClient(timeout=self.timeout) as c:
|
|
with audio_path.open("rb") as f:
|
|
files = {"audio": (audio_path.name, f, "application/octet-stream")}
|
|
data = {"language": language}
|
|
r = await c.post(f"{self.base_url}/api/transcribe", files=files, data=data)
|
|
r.raise_for_status()
|
|
return r.json()
|
|
|
|
async def summarize(self, transcript: str, title: str = "") -> dict:
|
|
async with httpx.AsyncClient(timeout=self.timeout) as c:
|
|
r = await c.post(
|
|
f"{self.base_url}/api/summarize",
|
|
json={"transcript": transcript, "title": title},
|
|
)
|
|
r.raise_for_status()
|
|
return r.json()
|
|
|
|
async def protocol(self, transcript: str, summary: dict, title: str = "") -> dict:
|
|
async with httpx.AsyncClient(timeout=self.timeout) as c:
|
|
r = await c.post(
|
|
f"{self.base_url}/api/protocol",
|
|
json={"transcript": transcript, "summary": summary, "title": title},
|
|
)
|
|
r.raise_for_status()
|
|
return r.json()
|
|
|
|
async def export_docx(self, protocol: dict) -> bytes:
|
|
async with httpx.AsyncClient(timeout=self.timeout) as c:
|
|
r = await c.post(f"{self.base_url}/api/export/docx", json=protocol)
|
|
r.raise_for_status()
|
|
return r.content
|