* 确保组件已准备就绪
()
| 395 | * 确保组件已准备就绪 |
| 396 | */ |
| 397 | private ensureReady(): void { |
| 398 | if (!this.isReady || !this.contextManager) { |
| 399 | throw new Error('上下文组件未初始化或已被禁用'); |
| 400 | } |
| 401 | |
| 402 | if (!this.currentSessionId) { |
| 403 | throw new Error('没有活动会话,请先创建或加载会话'); |
| 404 | } |
| 405 | } |
| 406 | |
| 407 | /** |
| 408 | * 记录日志 |
no outgoing calls
no test coverage detected