From bc421d7557508f1e8bce5c372498bab9642b6166 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Wed, 4 Oct 2023 17:46:45 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix(test=5Fagents=5Ftemplate.py)?= =?UTF-8?q?:=20set=20"required"=20field=20to=20True=20for=20the=20"tools"?= =?UTF-8?q?=20attribute=20in=20the=20template=20dictionary=20to=20enforce?= =?UTF-8?q?=20its=20presence?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/test_agents_template.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_agents_template.py b/tests/test_agents_template.py index b12ad7dee..e354d4a16 100644 --- a/tests/test_agents_template.py +++ b/tests/test_agents_template.py @@ -241,7 +241,7 @@ def test_initialize_agent(client: TestClient, logged_in_headers): "info": "", } assert template["tools"] == { - "required": False, + "required": True, "dynamic": False, "placeholder": "", "show": True,