Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file added setup.txt
Empty file.
9 changes: 7 additions & 2 deletions voice_assistant/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,14 @@ class Config:
LOCAL_MODEL_PATH (str): Path to the local model.
"""
# Model selection


TRANSCRIPTION_MODEL = 'deepgram' # possible values: openai, groq, deepgram, fastwhisperapi
RESPONSE_MODEL = 'openai' # possible values: openai, groq, ollama
TTS_MODEL = 'openai' # possible values: openai, deepgram, elevenlabs, melotts, cartesia

RESPONSE_MODEL = 'ollama' # possible values: openai, groq, ollama
TTS_MODEL = 'deepgram' # possible values: openai, deepgram, elevenlabs, melotts, cartesia



# currently using the MeloTTS for local models. here is how to get started:
# https://github.com/myshell-ai/MeloTTS/blob/main/docs/install.md#linux-and-macos-install
Expand Down