()
| 704 | } |
| 705 | |
| 706 | function testSessionStatus(): SessionStatusResponse { |
| 707 | return { |
| 708 | status: 'idle', |
| 709 | model: 'kimi-code/kimi-for-coding', |
| 710 | thinking_level: 'off', |
| 711 | permission: 'manual', |
| 712 | plan_mode: false, |
| 713 | swarm_mode: false, |
| 714 | context_tokens: 0, |
| 715 | max_context_tokens: 100, |
| 716 | context_usage: 0, |
| 717 | }; |
| 718 | } |
| 719 | |
| 720 | function textFromMessages(messages: Array<{ content: Array<{ type: string; text?: string }> }>): string { |
| 721 | return messages |