Add ai.yaml
parent
47b408face
commit
b25aed9d45
|
@ -0,0 +1,34 @@
|
|||
version: '3.7'
|
||||
services:
|
||||
|
||||
wyoming-piper:
|
||||
image: rhasspy/wyoming-piper
|
||||
container_name: Piper
|
||||
restart: unless-stopped
|
||||
stdin_open: true
|
||||
tty: true
|
||||
ports:
|
||||
- 10200:10200
|
||||
volumes:
|
||||
- /dockers/piper:/data
|
||||
command: --voice en_US-lessac-medium
|
||||
logging:
|
||||
options:
|
||||
max-size: "10m"
|
||||
max-file: "3"
|
||||
|
||||
wyoming-whisper:
|
||||
image: rhasspy/wyoming-whisper
|
||||
container_name: Whisper
|
||||
restart: unless-stopped
|
||||
stdin_open: true
|
||||
tty: true
|
||||
ports:
|
||||
- 10300:10300
|
||||
volumes:
|
||||
- /dockers/whisper:/data
|
||||
command: --model tiny-int8 --language en
|
||||
logging:
|
||||
options:
|
||||
max-size: "10m"
|
||||
max-file: "3"
|
Loading…
Reference in New Issue