Update sarasowti.py

pull/1101/head
CI-DEV 1 week ago committed by GitHub
parent 21b8be8ace
commit 009db7f340
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -181,7 +181,7 @@ Maintain a warm, friendly, and authentic presence while ensuring all interaction
######################################## ########################################
model = LiteLLM( model = LiteLLM(
model_name="gpt-4o", model_name="gpt-4.1",
response_format=CallLog, response_format=CallLog,
system_prompt=MASTER_AGENT_SYS_PROMPT, system_prompt=MASTER_AGENT_SYS_PROMPT,
) )
@ -193,7 +193,7 @@ counselor_agent = Agent(
agent_description="Provides empathetic and effective college counseling and guidance.", agent_description="Provides empathetic and effective college counseling and guidance.",
system_prompt=COUNSELOR_AGENT_SYS_PROMPT, system_prompt=COUNSELOR_AGENT_SYS_PROMPT,
max_loops=1, max_loops=1,
model_name="gpt-4o", model_name="gpt-4.1",
dynamic_temperature_enabled=True, dynamic_temperature_enabled=True,
) )
@ -203,7 +203,7 @@ buddy_agent = Agent(
agent_description="Acts as a supportive, friendly companion to the student.", agent_description="Acts as a supportive, friendly companion to the student.",
system_prompt=BUDDY_AGENT_SYS_PROMPT, system_prompt=BUDDY_AGENT_SYS_PROMPT,
max_loops=1, max_loops=1,
model_name="gpt-4o", model_name="gpt-4.1",
dynamic_temperature_enabled=True, dynamic_temperature_enabled=True,
) )

Loading…
Cancel
Save