scripts(evals): more eval prompts improvements

This commit is contained in:
Aleix Conchillo Flaqué
2025-12-17 09:46:53 -08:00
parent ca97d9dc4b
commit d07b37b288
5 changed files with 15 additions and 9 deletions

View File

@@ -71,9 +71,9 @@ def build_agent(model_id: str, max_tokens: int):
@tool
def check_weather(location: str) -> str:
if location.lower() == "san francisco":
return "The weather in San Francisco is sunny and 30 degrees."
return "The weather in San Francisco is sunny and 75 degrees."
elif location.lower() == "sydney":
return "The weather in Sydney is cloudy and 20 degrees."
return "The weather in Sydney is cloudy and 60 degrees."
else:
return "I'm not sure about the weather in that location."