Update OpenAILLMService examples to use gpt-4.1

This commit is contained in:
Mark Backman
2025-04-15 14:59:55 -04:00
parent efae26a5a8
commit 6d10732889
70 changed files with 72 additions and 75 deletions

View File

@@ -436,7 +436,7 @@ async def run_bot(webrtc_connection: SmallWebRTCConnection):
# This is the regular LLM.
llm = OpenAILLMService(
api_key=os.getenv("OPENAI_API_KEY"),
model="gpt-4o",
model="gpt-4.1",
)
# Register a function_name of None to get all functions
# sent to the same callback with an additional function_name parameter.