Skip to content
Draft
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
79 changes: 78 additions & 1 deletion components/voiceAgent/livekit-agent/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,84 @@ def __init__(self) -> None:
),
stt=FallbackSTTAdapter(
stt=[
inference.STT("deepgram/nova-3"),
inference.STT(
"deepgram/nova-3",
extra_kwargs={
"keyterms": [
# Langfuse
"Langfuse",
# Observability concepts
"OpenTelemetry",
"OTEL",
"LLM-as-a-Judge",
# Native SDKs
"LiteLLM",
# Frameworks
"LangChain",
"LangGraph",
"LangServe",
"LlamaIndex",
"Vercel AI SDK",
"Google ADK",
"Pydantic AI",
"OpenAI Agents",
"Claude Agent SDK",
"CrewAI",
"DSPy",
"Haystack",
"Instructor",
"AutoGen",
"SmolAgents",
"Semantic Kernel",
"Spring AI",
"Strands Agents",
"Swiftide",
"Mastra",
"Mirascope",
"Pipecat",
"LiveKit",
"Agno",
"VoltAgent",
"Embabel",
"Koog",
# Model providers
"Anthropic",
"DeepSeek",
"Groq",
"Cerebras",
"Fireworks AI",
"Together AI",
"Cohere",
"Mistral",
"Ollama",
"vLLM",
"xAI Grok",
"Hugging Face",
"Amazon Bedrock",
"Google Gemini",
"Google Vertex AI",
# Gateways
"OpenRouter",
"Portkey",
"Helicone",
# No-code
"Flowise",
"Langflow",
"LobeChat",
"OpenWebUI",
"Ragflow",
"Vapi",
"Dify",
# Other integrations
"PostHog",
"Ragas",
"Promptfoo",
"Firecrawl",
"Cognee",
"Milvus",
],
},
),
inference.STT("cartesia/ink-whisper"),
]
),
Expand Down
Loading