Skip to content

Commit e5ef667

Browse files
committed
Upgrade LLM model from GPT-5.2 to GPT-5.3
1 parent 802cebd commit e5ef667

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ async def my_agent(ctx: JobContext):
7272
stt=inference.STT(model="deepgram/nova-3", language="multi"),
7373
# A Large Language Model (LLM) is your agent's brain, processing user input and generating a response
7474
# See all available models at https://docs.livekit.io/agents/models/llm/
75-
llm=inference.LLM(model="openai/gpt-5.2-chat-latest"),
75+
llm=inference.LLM(model="openai/gpt-5.3-chat-latest"),
7676
# Text-to-speech (TTS) is your agent's voice, turning the LLM's text into speech that the user can hear
7777
# See all available models as well as voice selections at https://docs.livekit.io/agents/models/tts/
7878
tts=inference.TTS(

0 commit comments

Comments
 (0)