mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-20 13:41:30 +00:00
8 lines
254 B
TypeScript
8 lines
254 B
TypeScript
import type { MoltbotPluginApi } from "../../src/plugins/types.js";
|
|
|
|
import { createLlmTaskTool } from "./src/llm-task-tool.js";
|
|
|
|
export default function register(api: MoltbotPluginApi) {
|
|
api.registerTool(createLlmTaskTool(api), { optional: true });
|
|
}
|