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
chore(docs): relocate process artefacts into docs/history/
Moved long-form historical / audit / refactor logs out of the repo root
into a dedicated docs/history/ subdirectory:
49be664_24918e4.md -> docs/history/49be664_24918e4.md
CHAT_INTEGRATION_SUMMARY.md -> docs/history/CHAT_INTEGRATION_SUMMARY.md
REFACTORING.md -> docs/history/REFACTORING.md
CHANGELOG.md references rewritten to the new paths. Files preserved
verbatim (git rename) so blame and history are intact.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,7 +54,7 @@ First release of the fork under the `net.ladenthin:llama` Maven coordinates. ~10
54
54
- First publish to Maven Central under `net.ladenthin:llama`.
55
55
- Pre-built native libraries for Linux (x86-64, aarch64), macOS (x86-64, arm64), and Windows (x86-64, x86).
56
56
- Java API surface: `LlamaModel`, `ModelParameters`, `InferenceParameters`, `LlamaIterator` / `LlamaIterable` for streaming, chat completion (`chatComplete`, `generateChat`, `chatCompleteText`), embeddings, reranking, infilling, raw JSON endpoint handlers, slot management (`saveSlot`, `restoreSlot`, `eraseSlot`), and `getModelMeta()`.
57
-
-`chatComplete()` for OpenAI-compatible chat completions, re-implemented from scratch based on a patch by @vaiju1981 (PR #61; see `CHAT_INTEGRATION_SUMMARY.md`).
57
+
-`chatComplete()` for OpenAI-compatible chat completions, re-implemented from scratch based on a patch by @vaiju1981 (PR #61; see `docs/history/CHAT_INTEGRATION_SUMMARY.md`).
58
58
-`mmproj`, reasoning-budget, sigma, and sleep-idle parameters added to `ModelParameters`.
59
59
- JaCoCo code-coverage reporting integrated with Coveralls and Codecov (PR #124).
60
60
- CodeQL static-analysis workflow on push, PR, and a weekly schedule.
@@ -69,7 +69,7 @@ First release of the fork under the `net.ladenthin:llama` Maven coordinates. ~10
69
69
### Changed
70
70
- Migrated Maven group and artifact from `de.kherud:java-llama.cpp` to `net.ladenthin:llama` (PR #101).
71
71
- Migrated Maven Central publishing from OSSRH (Legacy) to the Sonatype Central Publisher Portal.
72
-
- Deleted the hand-ported `server.hpp` fork (~3,780 lines) and linked the upstream `llama.cpp` server source files directly into `jllama`. ~4,100 C++ lines removed in total; future upstream upgrades become a CMake version bump. **The Java API is unchanged.** See `REFACTORING.md`.
72
+
- Deleted the hand-ported `server.hpp` fork (~3,780 lines) and linked the upstream `llama.cpp` server source files directly into `jllama`. ~4,100 C++ lines removed in total; future upstream upgrades become a CMake version bump. **The Java API is unchanged.** See `docs/history/REFACTORING.md`.
- Unified CI into a single `publish.yml` workflow with cross-compilation, testing, coverage, and release stages.
75
75
- Upgraded CUDA from 12.1 to 13.2 (PR #50).
@@ -86,7 +86,7 @@ First release of the fork under the `net.ladenthin:llama` Maven coordinates. ~10
86
86
Releases `1.1.1` through `4.2.0` were authored by [@kherud](https://github.com/kherud) on the upstream repository. The full upstream release notes are at
87
87
<https://github.com/kherud/java-llama.cpp/releases>. The fork's baseline is upstream commit `49be664` (tagged `v4.2.0`, 2025-06-20).
88
88
89
-
For an architecture-level diff between the pre-fork baseline (`49be664`) and the first 5.0.0 candidate (`24918e4`), see [`49be664_24918e4.md`](49be664_24918e4.md). For the server-fork-deletion refactor that culminated in 5.0.0, see [`REFACTORING.md`](REFACTORING.md). For the chat-completion integration that landed in 5.0.0, see [`CHAT_INTEGRATION_SUMMARY.md`](CHAT_INTEGRATION_SUMMARY.md).
89
+
For an architecture-level diff between the pre-fork baseline (`49be664`) and the first 5.0.0 candidate (`24918e4`), see [`docs/history/49be664_24918e4.md`](docs/history/49be664_24918e4.md). For the server-fork-deletion refactor that culminated in 5.0.0, see [`docs/history/REFACTORING.md`](docs/history/REFACTORING.md). For the chat-completion integration that landed in 5.0.0, see [`docs/history/CHAT_INTEGRATION_SUMMARY.md`](docs/history/CHAT_INTEGRATION_SUMMARY.md).
0 commit comments