mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-22 08:38:13 +02:00
Merge pull request #20 from dograh-hq/chore/ux-improvements
feat: UX improvements for onboarding
This commit is contained in:
commit
d39a8111a6
11 changed files with 97 additions and 51 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