(id: string, prompt: string)
| 207 | } |
| 208 | |
| 209 | function setPrompt(id: string, prompt: string): void { |
| 210 | if (!prompt) return |
| 211 | const session = get(id) |
| 212 | session.lastPrompt = prompt |
| 213 | } |
| 214 | |
| 215 | function startTool(id: string, callId: string, now?: number): void { |
| 216 | const session = get(id) |