MCPcopy Index your code
hub / github.com/github/copilot-sdk / Tool

Class Tool

python/copilot/tools.py:58–65  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

56
57@dataclass
58class Tool:
59 name: str
60 description: str
61 handler: ToolHandler | None = None
62 parameters: dict[str, Any] | None = None
63 overrides_built_in_tool: bool = False
64 skip_permission: bool = False
65 defer: Literal["auto", "never"] | None = None
66
67
68T = TypeVar("T", bound=BaseModel)

Calls

no outgoing calls

Used in the wild real call sites across dependent graphs

searching dependent graphs…