Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove strict Parameter from Tool Schema When False #179

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion agency_swarm/agents/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -430,9 +430,14 @@ def get_oai_tools(self):
elif issubclass(tool, Retrieval):
tools.append(tool().model_dump())
elif issubclass(tool, BaseTool):
tool_config = tool.openai_schema
# remove strict if it's set to False
if 'function' in tool_config and 'strict' in tool_config['function']:
if tool_config['function']['strict'] is False:
tool_config['function'].pop('strict', None)
tools.append({
"type": "function",
"function": tool.openai_schema
"function": tool_config
})
else:
raise Exception("Invalid tool type.")
Expand Down
Loading