10 lines
241 B
TypeScript
Raw Normal View History

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