Skip to content

Commit c237e47

Browse files
Update LiveKit example: fix title casing and upgrade model (#436)
- Fix README title casing: "Livekit" β†’ "LiveKit" - Update OpenAI model from gpt-4o-mini to gpt-5-nano-2025-08-07 in both voice agents πŸ€– Generated with [Claude Code](https://claude.ai/code) Co-authored-by: Claude <[email protected]>
1 parent a328153 commit c237e47

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

β€Žintegrations/python/zep_livekit/examples/full-example/README.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Zep Livekit Integration Full Working Example
1+
# Zep LiveKit Integration Full Working Example
22

33
Voice agent that demonstrates LiveKit + Zep integration with persistent memory.
44

β€Žintegrations/python/zep_livekit/examples/full-example/zep_graph_voice_agent.pyβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ async def entrypoint(ctx: agents.JobContext):
6666
# Step 5: Create agent session with OpenAI components
6767
session = agents.AgentSession(
6868
stt=openai.STT(),
69-
llm=openai.LLM(model="gpt-4o-mini"),
69+
llm=openai.LLM(model="gpt-5-nano-2025-08-07"),
7070
tts=openai.TTS(voice="alloy"),
7171
vad=silero.VAD.load(),
7272
)

β€Žintegrations/python/zep_livekit/examples/full-example/zep_voice_agent.pyβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ async def entrypoint(ctx: agents.JobContext):
4646
# Step 5: Create agent session with OpenAI components
4747
session = agents.AgentSession(
4848
stt=openai.STT(),
49-
llm=openai.LLM(model="gpt-4o-mini"),
49+
llm=openai.LLM(model="gpt-5-nano-2025-08-07"),
5050
tts=openai.TTS(voice="alloy"),
5151
vad=silero.VAD.load(),
5252
)

0 commit comments

Comments
Β (0)