mirror of
https://github.com/openclaw/openclaw.git
synced 2026-02-19 18:39:20 -05:00
7 lines
255 B
TypeScript
7 lines
255 B
TypeScript
import type { OpenClawPluginApi } from "../../src/plugins/types.js";
|
|
import { createLlmTaskTool } from "./src/llm-task-tool.js";
|
|
|
|
export default function register(api: OpenClawPluginApi) {
|
|
api.registerTool(createLlmTaskTool(api), { optional: true });
|
|
}
|