You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Reliable keyboard input (robust Enter on macOS), hotkeys and hold sequences
45
49
- Screenshots (Quartz on macOS or PyAutoGUI fallback), on‑disk saving and base64 tool_result
46
50
- Detailed logs and running cost estimation per iteration and total
51
+
- Multiple chats
52
+
- Images upload
53
+
- Voice input
54
+
- AI API Agnostic
47
55
48
56
See provider architecture in `docs/architecture-universal-llm.md`, OS ports/drivers in `docs/os-architecture.md`, and packaging notes in `docs/ci-packaging.md`.
49
57
@@ -130,6 +138,77 @@ make itest-local-click # run click/drag harness
130
138
131
139
---
132
140
141
+
## Development Mode
142
+
143
+
For development with backend + frontend (Flutter UI):
144
+
145
+
### 1. Install dependencies
146
+
147
+
```bash
148
+
# (optional) create and activate venv
149
+
python -m venv .venv &&source .venv/bin/activate
150
+
151
+
# install Python dependencies
152
+
make install
153
+
154
+
# install local packages in editable mode for mono-repo dev
0 commit comments