diff --git a/components/voiceAgent/livekit-agent/agent.py b/components/voiceAgent/livekit-agent/agent.py index e261a0749..f1c2cafd6 100644 --- a/components/voiceAgent/livekit-agent/agent.py +++ b/components/voiceAgent/livekit-agent/agent.py @@ -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"), ] ),