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 db73701 commit e217e8aCopy full SHA for e217e8a
.github/workflows/tests.yml
@@ -28,5 +28,7 @@ jobs:
28
29
- name: Run tests
30
env:
31
- OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
+ LIVEKIT_URL: ${{ secrets.LIVEKIT_URL }}
32
+ LIVEKIT_API_KEY: ${{ secrets.LIVEKIT_API_KEY }}
33
+ LIVEKIT_API_SECRET: ${{ secrets.LIVEKIT_API_SECRET }}
34
run: uv run pytest -v
tests/test_agent.py
@@ -5,7 +5,7 @@
5
6
7
def _llm() -> llm.LLM:
8
- return inference.LLM(model="openai/gpt-4o-mini")
+ return inference.LLM(model="azure/gpt-4o-mini")
9
10
11
@pytest.mark.asyncio
0 commit comments