Merge pull request #20 from dograh-hq/chore/ux-improvements

feat: UX improvements for onboarding
This commit is contained in:
Abhishek 2025-10-04 11:06:01 +05:30 committed by GitHub
commit d39a8111a6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 97 additions and 51 deletions

View file

@ -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

View file

@ -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):