most-vr-18651
08/11/2025, 8:53 AMtall-airline-16756
08/11/2025, 8:53 AMtall-airline-16756
08/11/2025, 8:54 AMpip install "livekit-agents[plugin-name1,plugin-name2]~=1.0"
For example: pip install "livekit-agents[openai,hume]~=1.0"
• If you prefer, you can install individual plugins like this:
pip install "livekit-plugins-openai~=1.0"
• Or you can install the base package and plugins separately:
pip install "livekit-agents~=1.0" "livekit-plugins-openai~=1.0"
2. Upgrade Plugins:
• Just add the --upgrade
flag to update your plugins:
pip install --upgrade "livekit-plugins-openai~=1.0"
If you have any questions or need help with specific plugins or settings, just give me a shout—I’m here to help!
Sources: LiveKit Agents integrations | LiveKit Docs | livekit-plugins/livekit-plugins-sarvam/README.md | Resemble AI TTS integration guide | LiveKit Docs | Baseten LLM integration guide | LiveKit Docs | Simli virtual avatar integration guide | LiveKit Docsmost-vr-18651
08/11/2025, 8:55 AMtall-airline-16756
08/11/2025, 8:55 AMpip install "livekit-agents[groq]~=1.0"
2. Upgrade the Plugin:
• If there’s a newer version, use the same command to upgrade. Pip will take care of the rest for you!
3. Additional Setup:
• Make sure you have your Groq API key handy and add it to your .env
file as GROQ_API_KEY
.
If you run into any questions or need a hand, just let me know—I’m here to help!
Sources: Groq STT integration guide | LiveKit Docs | Groq LLM integration guide | LiveKit Docsmost-vr-18651
08/11/2025, 8:56 AMtall-airline-16756
08/11/2025, 8:57 AMpip install --upgrade "livekit-agents[groq]~=1.0"
• For the individual plugin:
pip install --upgrade "livekit-plugins-groq~=1.0"
These will get you the latest compatible version. If you run into any issues or have questions, just give me a shout—I’m here to help!
Sources: LiveKit Agents integrations | LiveKit Docsmost-vr-18651
08/11/2025, 8:57 AMpip install --upgrade "livekit-agents[groq]~=1.0"
• For the individual plugin:
• pip install --upgrade "livekit-plugins-groq~=1.0"
tall-airline-16756
08/11/2025, 8:58 AMpip install --upgrade "livekit-agents[groq]~=1.0"
This one installs the livekit-agents
package along with the Groq plugin as an optional add-on. It’s a straightforward way to get everything together without much hassle.
• For the individual plugin:
pip install --upgrade "livekit-plugins-groq~=1.0"
Here, you’re installing the Groq plugin separately, which gives you a bit more control if you want to manage the plugin version on its own.
So, it really depends on whether you want an easy all-in-one setup or prefer to handle the plugin separately for more precise control. If anything’s still fuzzy or you want to chat more about it, just let me know—I’m here to help!
Sources: LiveKit Agents integrations | LiveKit Docsmost-vr-18651
08/11/2025, 8:59 AMtall-airline-16756
08/11/2025, 9:00 AMlivekit==1.0.12
and livekit-agents==1.2.2
comes down to what they focus on and what they do:
• LiveKit (livekit
): This is the core WebRTC SFU (Selective Forwarding Unit) and media server that powers real-time communication and media streaming. Think of it as the foundation for video calls, live streams, and other real-time apps.
• LiveKit Agents (livekit-agents
): This one builds on top of LiveKit and lets you create AI-driven, programmable participants (agents). It works with AI services like speech-to-text (STT), text-to-speech (TTS), and large language models (LLMs) to bring conversational AI and smart interactions to life.
So, in a nutshell, livekit
is your go-to for real-time communication infrastructure, while livekit-agents
adds the AI magic to build intelligent agents. If you want me to dive deeper or have any questions, just let me know—I’m here to help!