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
feat(deepseek): add file upload support via --file flag (#1093)
* WIP: deepseek file upload (blocked by 30s idle timeout)
* feat(deepseek): add file upload support via --file flag
Closes#1092
* fix(deepseek): use native file input path for --file
---------
Co-authored-by: Benjamin Liu <beneecs@Benjamins-Mac-mini.local>
Co-authored-by: jackwener <jakevingoo@gmail.com>
|`--file`| Attach a file (PDF, image, text) with the prompt (max 100 MB) |
65
69
66
70
## Prerequisites
67
71
@@ -73,4 +77,4 @@ opencli deepseek history --limit 10
73
77
- This adapter drives the DeepSeek web UI in the browser, not an API
74
78
- Default mode is Instant with DeepThink and Search disabled; each flag (`--model`, `--think`, `--search`) is synced on every invocation so omitting a flag resets it
75
79
- Long responses (code, essays) may need a higher `--timeout`
76
-
- File upload is not yet supported
80
+
- File upload reads the file into memory and passes it via base64 to the browser; files over 100 MB are rejected
0 commit comments