UNPKG

@gguf/claw

Version:

Multi-channel AI gateway with extensible messaging integrations

7 lines (5 loc) 296 B
import type { AnyAgentTool, OpenClawPluginApi } from "../../src/plugins/types.js"; import { createLlmTaskTool } from "./src/llm-task-tool.js"; export default function register(api: OpenClawPluginApi) { api.registerTool(createLlmTaskTool(api) as unknown as AnyAgentTool, { optional: true }); }