(value: boolean)
| 309 | const visible = createMemo(() => mode() !== false) |
| 310 | |
| 311 | const setShellMode = (value: boolean) => { |
| 312 | setShell(value) |
| 313 | draft = value ? { ...draft, mode: "shell" } : { text: draft.text, parts: structuredClone(draft.parts) } |
| 314 | } |
| 315 | |
| 316 | const width = createMemo(() => Math.max(20, input.width() - 8)) |
| 317 | const agents = createMemo<Auto[]>(() => { |
no outgoing calls
no test coverage detected