From b25aed9d45605fc6d3d4539190e97ef1b4775993 Mon Sep 17 00:00:00 2001 From: Dex Burgess Date: Sun, 17 Aug 2025 03:56:38 +0000 Subject: [PATCH] Add ai.yaml --- ai.yaml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 ai.yaml diff --git a/ai.yaml b/ai.yaml new file mode 100644 index 0000000..890def4 --- /dev/null +++ b/ai.yaml @@ -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" \ No newline at end of file