repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 | /** |
| #2 | * Automaton Tool System |
| #3 | * |
| #4 | * Defines all tools the automaton can call, with self-preservation guards. |
| #5 | * Tools are organized by category and exposed to the inference model. |
| #6 | */ |
| #7 | import type { AutomatonTool, ToolContext, InferenceToolDefinition, ToolCallResult } from "../types.js"; |
| #8 | export declare function createBuiltinTools(sandboxId: string): AutomatonTool[]; |
| #9 | /** |
| #10 | * Convert AutomatonTool list to OpenAI-compatible tool definitions. |
| #11 | */ |
| #12 | export declare function toolsToInferenceFormat(tools: AutomatonTool[]): InferenceToolDefinition[]; |
| #13 | /** |
| #14 | * Execute a tool call and return the result. |
| #15 | */ |
| #16 | export declare function executeTool(toolName: string, args: Record<string, unknown>, tools: AutomatonTool[], context: ToolContext): Promise<ToolCallResult>; |
| #17 | //# sourceMappingURL=tools.d.ts.map |