From add148ade35c2fbe9ff4ef2eaaabe7dff640a458 Mon Sep 17 00:00:00 2001 From: qcampbel Date: Thu, 4 Jan 2024 15:30:51 -0500 Subject: [PATCH] updated pydantic field for createnewtool --- mdagent/tools/maketools.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mdagent/tools/maketools.py b/mdagent/tools/maketools.py index 80d3ef11..0cfc5c52 100644 --- a/mdagent/tools/maketools.py +++ b/mdagent/tools/maketools.py @@ -186,7 +186,8 @@ class CreateNewToolInputSchema(BaseModel): this tool, 'ExecuteSkill', 'SkillRetrieval', and maybe `Name2PDBTool`, etc.""" ) execute: Optional[bool] = Field( - description="Whether to execute the new tool or not. default: True" + True, + description="Whether to execute the new tool or not.", ) args: Optional[dict] = Field( description="Input variables as a dictionary to pass to the skill"