* 获取统计信息
()
| 320 | * 获取统计信息 |
| 321 | */ |
| 322 | public async getStats(): Promise<{ |
| 323 | currentSession: string | null; |
| 324 | memory: any; |
| 325 | cache: any; |
| 326 | storage: any; |
| 327 | }> { |
| 328 | this.ensureReady(); |
| 329 | return await this.contextManager!.getStats(); |
| 330 | } |
| 331 | |
| 332 | /** |
| 333 | * 构建包含上下文的消息列表 |
nothing calls this directly
no test coverage detected