We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6618f2 commit 408eccdCopy full SHA for 408eccd
1 file changed
python/copilot/client.py
@@ -630,11 +630,11 @@ async def resume_session(
630
631
# Add available/excluded tools if provided
632
available_tools = cfg.get("available_tools")
633
- if available_tools:
+ if available_tools is not None:
634
payload["availableTools"] = available_tools
635
636
excluded_tools = cfg.get("excluded_tools")
637
- if excluded_tools:
+ if excluded_tools is not None:
638
payload["excludedTools"] = excluded_tools
639
640
provider = cfg.get("provider")
0 commit comments