Files
opencode/.opencode/plugin/example.ts
2025-08-06 08:47:53 -05:00

11 lines
234 B
TypeScript

import { Plugin } from "../../packages/plugin/src/index"
export const ExamplePlugin: Plugin = async ({ app, client, $ }) => {
return {
permission: {},
async "chat.params"(input, output) {
output.topP = 1
},
}
}