MCPcopy Create free account
hub / github.com/altic-dev/Pilot / BaseToolInvocation

Interface BaseToolInvocation

src/components/tool-invocation.tsx:9–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7type ToolInvocationState = "input-available" | "output-available";
8
9interface BaseToolInvocation {
10 type: string;
11 toolName: string;
12 state: ToolInvocationState;
13 input: any;
14 output?: any;
15}
16
17type ProgressMessage = {
18 timestamp: string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected