blob: a13c0fbac2cb2f1aa3d61b816ca48159b47306e0 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import { Plugin } from "./index"
export const ExamplePlugin: Plugin = async ({ client, $ }) => {
return {
permission: {},
async "chat.params"(input, output) {
output.topP = 1
},
}
}
|