mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-16 08:25:18 +02:00
UX improvements for onboarding
This commit is contained in:
parent
02646e0a7a
commit
5ab93767dd
9 changed files with 85 additions and 50 deletions
|
|
@ -3,3 +3,4 @@ ruff==0.11.3
|
|||
pytest==8.3.5
|
||||
pytest-asyncio==0.26.0
|
||||
pre-commit==4.2.0
|
||||
watchfiles==1.1.0
|
||||
|
|
@ -157,6 +157,8 @@ class AzureLLMService(BaseLLMConfiguration):
|
|||
# Dograh LLM Service
|
||||
class DograhLLMModel(str, Enum):
|
||||
DEFAULT = "default"
|
||||
FAST = "fast"
|
||||
ACCURATE = "accurate"
|
||||
|
||||
|
||||
@register_llm
|
||||
|
|
@ -279,6 +281,8 @@ class OpenAITTSService(BaseTTSConfiguration):
|
|||
# Dograh TTS Service
|
||||
class DograhVoice(str, Enum):
|
||||
DEFAULT = "default"
|
||||
JOEY = "joey"
|
||||
RACHEL = "rachel"
|
||||
|
||||
|
||||
class DograhTTSModel(str, Enum):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue