mirror of
https://github.com/sst/opencode.git
synced 2025-08-18 04:00:16 +00:00
10 lines
210 B
TypeScript
10 lines
210 B
TypeScript
import { Plugin } from "./index"
|
|
|
|
export const ExamplePlugin: Plugin = async ({ app, client, $ }) => {
|
|
return {
|
|
permission: {},
|
|
async "chat.params"(input, output) {
|
|
output.topP = 1
|
|
},
|
|
}
|
|
}
|