From 94a62d84e1c4ad15c8de786e41b94d9733972a5f Mon Sep 17 00:00:00 2001 From: kilavvy <140459108+kilavvy@users.noreply.github.com> Date: Thu, 26 Jun 2025 15:55:53 +0200 Subject: [PATCH] Update test_lite_agent.py (#3040) Co-authored-by: Lucas Gomide --- tests/test_lite_agent.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_lite_agent.py b/tests/test_lite_agent.py index 0a8da236d..6b0ca4b70 100644 --- a/tests/test_lite_agent.py +++ b/tests/test_lite_agent.py @@ -192,7 +192,7 @@ def test_lite_agent_structured_output(): ) result = agent.kickoff( - "What is the population of Tokyo? Return your strucutred output in JSON format with the following fields: summary, confidence", + "What is the population of Tokyo? Return your structured output in JSON format with the following fields: summary, confidence", response_format=SimpleOutput, ) @@ -230,7 +230,7 @@ def test_lite_agent_returns_usage_metrics(): ) result = agent.kickoff( - "What is the population of Tokyo? Return your strucutred output in JSON format with the following fields: summary, confidence" + "What is the population of Tokyo? Return your structured output in JSON format with the following fields: summary, confidence" ) assert result.usage_metrics is not None @@ -252,7 +252,7 @@ async def test_lite_agent_returns_usage_metrics_async(): ) result = await agent.kickoff_async( - "What is the population of Tokyo? Return your strucutred output in JSON format with the following fields: summary, confidence" + "What is the population of Tokyo? Return your structured output in JSON format with the following fields: summary, confidence" ) assert isinstance(result, LiteAgentOutput) assert "21 million" in result.raw or "37 million" in result.raw