diff --git a/.gitignore b/.gitignore index fb89dee..66f85f9 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ dist/ .env.* !.env.example .worktrees/ +whisper-models/ diff --git a/config/default.yaml b/config/default.yaml index b37a7e3..56187a1 100644 --- a/config/default.yaml +++ b/config/default.yaml @@ -172,5 +172,5 @@ audio: enabled: true provider: type: custom - endpoint: "http://whisper-server:8080/v1/audio/transcriptions" + endpoint: "http://localhost:18801/v1/audio/transcriptions" model: "whisper-1" diff --git a/docker-compose.yml b/docker-compose.yml index 019152f..234d650 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,5 +1,3 @@ -version: '3.9' - services: flynn: build: . @@ -55,7 +53,7 @@ services: volumes: - ./whisper-models:/app/models:ro healthcheck: - test: ["CMD-SHELL", "curl", "-f", "http://localhost:8080/"] + test: ["CMD", "curl", "-f", "http://localhost:8080/"] interval: 30s timeout: 5s start_period: 15s