UNPKG

@gguf/claw

Version:

Multi-channel AI gateway with extensible messaging integrations

12 lines (11 loc) 377 B
import type { AgentTool } from "@mariozechner/pi-agent-core"; import { toToolDefinitions } from "../pi-tool-definition-adapter.js"; type AnyAgentTool = AgentTool; export declare function splitSdkTools(options: { tools: AnyAgentTool[]; sandboxEnabled: boolean; }): { builtInTools: AnyAgentTool[]; customTools: ReturnType<typeof toToolDefinitions>; }; export {};