2023-05-05 21:27:40 +08:00

10 lines
241 B
TypeScript

import { ChatContext } from './contextManager';
export const exampleContext: ChatContext = {
name: 'exampleContext',
description: '这是一个示例上下文',
handler: async () => {
return `[context|example file name]`;
},
};