From ec9ee4e0ca1a02d69527bf0113ec4af31c7b871c Mon Sep 17 00:00:00 2001 From: James Braza Date: Thu, 12 Sep 2024 11:42:11 -0700 Subject: [PATCH] Removed extra spaces from test_agent_types prompt --- tests/test_agents.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_agents.py b/tests/test_agents.py index 73fe290f..08644e12 100644 --- a/tests/test_agents.py +++ b/tests/test_agents.py @@ -88,7 +88,7 @@ async def test_agent_types( agent_test_settings.llm = "gpt-4o-mini" agent_test_settings.summary_llm = "gpt-4o-mini" agent_test_settings.agent.agent_prompt += ( - "\n\n Call each tool once in appropriate order and " + "\n\nCall each tool once in appropriate order and" " accept the answer for now, as we're in debug mode." ) request = QueryRequest(query=question, settings=agent_test_settings)