diff --git a/src/context/contextManager.ts b/src/context/contextManager.ts index 2ddad8c..68388e2 100644 --- a/src/context/contextManager.ts +++ b/src/context/contextManager.ts @@ -64,7 +64,6 @@ export interface ChatContext { } async processText(command: string): Promise { - // 处理所有命令 for (const contextObj of this.contexts) { if (contextObj.name === command) { return await contextObj.handler();