You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We need to add the strict=False parameter to all Tool constructors in the agent configuration to prevent issues with tool validation. This was discovered when fixing the agent_config.py file where all Tool instantiations were missing this parameter.
The fix should be handled by default in the code, but we also need a configuration option in tunacode.json to allow users to control this behavior.
Changes made in src/tunacode/core/agents/agent_components/agent_config.py:
Added strict=False parameter to all Tool constructors in both plan mode and normal mode tool lists
This ensures that tools don't fail strictly when their parameters don't exactly match the function signatures, providing more flexibility in tool usage.