We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e1a5c3 commit 0034509Copy full SHA for 0034509
tests/test_agent.py
@@ -1,12 +1,11 @@
1
import pytest
2
-from livekit.agents import AgentSession, llm
3
-from livekit.plugins import openai
+from livekit.agents import AgentSession, llm, inference
4
5
from agent import Assistant
6
7
8
def _llm() -> llm.LLM:
9
- return openai.LLM(model="gpt-4o-mini")
+ return inference.LLM(model="openai/gpt-4o-mini")
10
11
12
@pytest.mark.asyncio
0 commit comments