From ae7caedc014454c5e52d8fb60a2414364cb2e5ba Mon Sep 17 00:00:00 2001 From: Nick Bobrowski <39348559+bonk1t@users.noreply.github.com> Date: Wed, 18 Sep 2024 17:20:48 +0100 Subject: [PATCH] Bug fix --- agency_swarm/agency/agency.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agency_swarm/agency/agency.py b/agency_swarm/agency/agency.py index 3c147b1..5298c84 100644 --- a/agency_swarm/agency/agency.py +++ b/agency_swarm/agency/agency.py @@ -1051,7 +1051,7 @@ class SendMessage(BaseTool): message_files: Optional[List[str]] = Field(default=None, description="A list of file ids to be sent as attachments to this message. Only use this if you have the file id that starts with 'file-'.", examples=["file-1234", "file-5678"]) - additional_instructions: str = Field(default=None, + additional_instructions: Optional[List[str]] = Field(default=None, description="Any additional instructions or clarifications that you would like to provide to the recipient agent.") class ToolConfig: