Skip to content

Commit

Permalink
0.10.1 - fixes #1
Browse files Browse the repository at this point in the history
  • Loading branch information
matatonic committed May 5, 2024
1 parent f24984d commit 9a7912a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN apt-get update && \
RUN mkdir -p /app/voices
WORKDIR /app
COPY *.txt /app/
RUN pip install --no-cache -r requirements.txt
RUN --mount=type=cache,target=/root/.cache/pip pip install -r requirements.txt
COPY *.sh *.py *.yaml *.md LICENSE config /app/

RUN apt-get clean && rm -rf /var/lib/apt/lists/*
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ If you find a better voice match for `tts-1` or `tts-1-hd`, please let me know s

## Recent Changes

Version: 0.10.1, 2024-05-05

* Remove `runtime: nvidia` from docker-compose.yml, this assumes nvidia/cuda compatible runtime is available by default. thanks @jmtatsch

Version: 0.10.0, 2024-04-27

* Pre-built & tested docker images, smaller docker images (8GB or 860MB)
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ services:
- ./config:/app/config
# install as a service, run with docker compose up -d
#restart: unless-stopped
# Below can be removed if not using GPU
runtime: nvidia
# Set nvidia runtime if it's not the default or not using GPU
#runtime: nvidia
deploy:
resources:
reservations:
Expand Down
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,7 @@ piper-tts==1.2.0
onnxruntime-gpu
# xtts
TTS
# XXX, 3.8+ has some issue for now
spacy==3.7.4
# parler-tts
git+https://github.com/huggingface/parler-tts.git

0 comments on commit 9a7912a

Please sign in to comment.