mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-12 07:20:45 +00:00
7 lines
298 B
TypeScript
7 lines
298 B
TypeScript
import type { AnyAgentTool, OpenClawPluginApi } from "openclaw/plugin-sdk/llm-task";
|
|
import { createLlmTaskTool } from "./src/llm-task-tool.js";
|
|
|
|
export default function register(api: OpenClawPluginApi) {
|
|
api.registerTool(createLlmTaskTool(api) as unknown as AnyAgentTool, { optional: true });
|
|
}
|