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
Annotate docs with shipped/open status for the §2 feature inventory
The kotlin-comparison doc and the open-issues doc were both stale
after PR #188 shipped 11 features. Bring them up to date in place
rather than introducing a separate changelog:
docs/feature-investigation-llama-stack-client-kotlin.md
- §1 capability matrix gets new rows for everything that landed
(typed chat + tools, async wrappers, reactive Publisher, batch
dispatch, Usage/Timings, Session, completeAsJson, TokenLogprob,
CancellationToken, LoadProgressCallback).
- New §1.1 status legend (SHIPPED / PARTIAL / OPEN).
- Each §2.x section now starts with a Status: line summarising what
shipped, with commit refs into this PR. §2.2/2.3/2.4/2.5/2.7/2.8/
2.9/2.10 marked SHIPPED. §2.6 PARTIAL (locking deferred).
§2.10 PARTIAL — cooperative cancel shipped; immediate cancel
needs a new server-side JNI primitive (M-effort follow-up).
§2.1 OPEN (multimodal image API).
docs/history/49be664_open_issues.md
- #113 updated STILL POSSIBLE -> FIXED in PR #188 commit 70df324,
with a note that the richer payload (file name, bytes, weights
flag) is intentionally not exposed because the upstream
llama_model_params.progress_callback emits only a float.
No code changes, no test impact.
https://claude.ai/code/session_01R4ZrEy3ptJDLuUgUKuM4Gy
Copy file name to clipboardExpand all lines: docs/history/49be664_open_issues.md
+16-1Lines changed: 16 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -188,7 +188,22 @@ vs. total, whether the file is the weights file, whether it is a download or
188
188
disk load) via a `Consumer<LLamaLoadProgress>` callback passed to the
189
189
`LlamaModel` constructor. Intended for showing a progress bar to end users.
190
190
191
-
**Status in fork:** STILL POSSIBLE. No `LLamaLoadProgress`, `Consumer<…>` or `setProgressCallback` exists in `LlamaModel.java` / `ModelParameters.java` (`grep -n "progress\|Progress"` returns only iterator cancellation comments). Next steps: expose `llama_model_params.progress_callback` through `ModelParameters` (Java side: a `Consumer<Float>` field; JNI side: wire a trampoline in `jllama.cpp` similar to `log_callback_trampoline`).
191
+
**Status in fork:** FIXED in PR #188 (commit `70df324`). New
0 commit comments