2025-08-02 22:50:19 +00:00
|
|
|
import { Plugin } from "./index"
|
2025-09-18 07:58:21 +00:00
|
|
|
import { tool } from "./tool"
|
2025-08-02 22:50:19 +00:00
|
|
|
|
2025-09-18 07:58:21 +00:00
|
|
|
export const ExamplePlugin: Plugin = async (ctx) => {
|
2025-08-02 22:50:19 +00:00
|
|
|
return {
|
2025-09-18 07:58:21 +00:00
|
|
|
tool: {
|
2025-09-18 09:42:59 +00:00
|
|
|
mytool: tool({
|
2025-10-31 19:07:36 +00:00
|
|
|
description: "This is a custom tool",
|
2025-09-18 07:58:21 +00:00
|
|
|
args: {
|
2025-09-18 09:42:59 +00:00
|
|
|
foo: tool.schema.string().describe("foo"),
|
2025-09-18 07:58:21 +00:00
|
|
|
},
|
2025-09-18 09:42:59 +00:00
|
|
|
async execute(args) {
|
2025-09-18 07:58:21 +00:00
|
|
|
return `Hello ${args.foo}!`
|
|
|
|
|
},
|
2025-09-18 09:42:59 +00:00
|
|
|
}),
|
2025-09-18 07:58:21 +00:00
|
|
|
},
|
2025-08-02 22:50:19 +00:00
|
|
|
}
|
|
|
|
|
}
|