rhythmic-furniture-71949
08/16/2025, 7:33 PMtall-airline-16756
08/16/2025, 7:33 PMtall-airline-16756
08/16/2025, 7:33 PMModuleNotFoundError: No module named 'livekit.agents.multimodal'
usually means the module isn’t installed or your environment can’t find it. No worries, here’s how you can fix it:
1. First, make sure you’ve got the LiveKit Agents package installed by running:
pip install livekit-agents
2. Next, double-check that you’re using a compatible version. The livekit.agents.multimodal
module shows up in versions 0.12.11 and above, but before 1.0.0. You can install the right version with:
pip install "livekit-agents>=0.12.11,<1.0.0"
3. Don’t forget to activate your virtual environment before running your script so Python knows where to look for the package.
4. Also, take a quick peek at your import statement to make sure it’s spot on:
from livekit.agents.multimodal import MultimodalAgent
If you’re still running into trouble, try this simple test script to see if the module loads properly:
# test_script.py
from livekit.agents.multimodal import MultimodalAgent
print("Module imported successfully")
One last thing—make sure pip
is installed and working in your environment. If pip
isn’t recognized, you might need to install it or try using pip3
instead.rhythmic-furniture-71949
08/16/2025, 7:35 PMtall-airline-16756
08/16/2025, 7:35 PMMultimodalAgent
module is no longer used in LiveKit Agents version 1.0.0 and beyond. It’s been swapped out for AgentSession
. That said, the exact import path for AgentSession
isn’t clearly mentioned in the docs right now.
No worries though! You might want to peek at the package documentation or explore the module structure in your installed version to find it. And if you’re still stuck or want a hand, just give me a shout—I’m happy to connect you with a specialist who can clear things up.
Sources: Agents 0.x migration guide | LiveKit Docs