mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-11 16:10:42 +00:00
16 lines
554 B
TypeScript
16 lines
554 B
TypeScript
import type { AgentTool } from "@mariozechner/pi-agent-core";
|
|
import { toToolDefinitions } from "../pi-tool-definition-adapter.js";
|
|
|
|
// We always pass tools via `customTools` so our policy filtering, sandbox integration,
|
|
// and extended toolset remain consistent across providers.
|
|
type AnyAgentTool = AgentTool;
|
|
|
|
export function splitSdkTools(options: { tools: AnyAgentTool[]; sandboxEnabled: boolean }): {
|
|
customTools: ReturnType<typeof toToolDefinitions>;
|
|
} {
|
|
const { tools } = options;
|
|
return {
|
|
customTools: toToolDefinitions(tools),
|
|
};
|
|
}
|