example.ts 234 B

12345678910
  1. import { Plugin } from "../../packages/plugin/src/index"
  2. export const ExamplePlugin: Plugin = async ({ app, client, $ }) => {
  3. return {
  4. permission: {},
  5. async "chat.params"(input, output) {
  6. output.topP = 1
  7. },
  8. }
  9. }