cloudaxe-opencode/.opencode/plugin/example.ts

11 lines
234 B
TypeScript
Raw Normal View History

import { Plugin } from "../../packages/plugin/src/index"
2025-08-04 01:42:45 +00:00
export const ExamplePlugin: Plugin = async ({ app, client, $ }) => {
return {
permission: {},
async "chat.params"(input, output) {
output.topP = 1
},
}
}