From 009db7f3402b184bab45ded16fb8beb5db59e99b Mon Sep 17 00:00:00 2001 From: CI-DEV <154627941+IlumCI@users.noreply.github.com> Date: Mon, 29 Sep 2025 22:24:40 +0300 Subject: [PATCH] Update sarasowti.py --- examples/demos/hackathon_feb16/sarasowti.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/demos/hackathon_feb16/sarasowti.py b/examples/demos/hackathon_feb16/sarasowti.py index 5f223ea1..668fcf86 100644 --- a/examples/demos/hackathon_feb16/sarasowti.py +++ b/examples/demos/hackathon_feb16/sarasowti.py @@ -181,7 +181,7 @@ Maintain a warm, friendly, and authentic presence while ensuring all interaction ######################################## model = LiteLLM( - model_name="gpt-4o", + model_name="gpt-4.1", response_format=CallLog, system_prompt=MASTER_AGENT_SYS_PROMPT, ) @@ -193,7 +193,7 @@ counselor_agent = Agent( agent_description="Provides empathetic and effective college counseling and guidance.", system_prompt=COUNSELOR_AGENT_SYS_PROMPT, max_loops=1, - model_name="gpt-4o", + model_name="gpt-4.1", dynamic_temperature_enabled=True, ) @@ -203,7 +203,7 @@ buddy_agent = Agent( agent_description="Acts as a supportive, friendly companion to the student.", system_prompt=BUDDY_AGENT_SYS_PROMPT, max_loops=1, - model_name="gpt-4o", + model_name="gpt-4.1", dynamic_temperature_enabled=True, )