Skip to content

Commit

Permalink
config: fix default speech_model
Browse files Browse the repository at this point in the history
  • Loading branch information
Fedir Zadniprovskyi authored and fedirz committed Feb 13, 2025
1 parent 855f3c0 commit 268cd8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/speaches/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,8 +225,8 @@ class Config(BaseSettings):

speech_base_url: str | None = None
speech_api_key: str | None = None
speech_model: str = "piper"
speech_extra_body: dict = {"sample_rate": 24000}
speech_model: str = "hexgrad/Kokoro-82M"
speech_extra_body: dict = {"sample_rate": 24000} # TODO: should this be set by default?

transcription_base_url: str | None = None
transcription_api_key: str | None = None
Expand Down

0 comments on commit 268cd8c

Please sign in to comment.