-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
22 lines (22 loc) · 715 Bytes
/
docker-compose.yml
File metadata and controls
22 lines (22 loc) · 715 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
services:
wyoming_openai:
image: ghcr.io/roryeckel/wyoming_openai:latest
container_name: wyoming_openai
ports:
- "10300:10300"
restart: unless-stopped
environment:
WYOMING_URI: tcp://0.0.0.0:10300
WYOMING_LOG_LEVEL: INFO
WYOMING_LANGUAGES: en
STT_OPENAI_URL: https://api.openai.com/v1
STT_MODELS: "whisper-1"
STT_STREAMING_MODELS: "gpt-4o-transcribe gpt-4o-mini-transcribe"
STT_BACKEND: "OPENAI"
TTS_OPENAI_URL: https://api.openai.com/v1
TTS_MODELS: "gpt-4o-mini-tts tts-1-hd tts-1"
TTS_BACKEND: "OPENAI"
# TTS_VOICES: "alloy ash coral echo fable onyx nova sage shimmer"
TTS_SPEED: "1.0"
env_file:
- .env