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
- TrainingParameters: keep class-level Lombok @builder@Getter but satisfy the
strict javadoc build (failOnWarnings) — replace the raw-source-invisible
{@link #builder()} with {@code builder()} and add an explicit private all-args
constructor so javadoc sees a real constructor (no synthetic-default warning);
Lombok generates the builder around it. Verified: compile + javadoc:jar clean,
TrainingParametersTest (3) green.
- publish.yml: re-root the Java test jobs' crash-dump/surefire upload globs to
llama/ (hs_err_pid*, *.hprof, target/surefire-reports/*) now that surefire runs
against -f llama/pom.xml; core.* stays at workspace root (absolute core_pattern).
- README: add Jlama and LangChain4j to the Similar Projects section.
- Apply clang-format 22.1.5 (train_engine.cpp) and spotless (Java) from the #289 merge.
- .gitignore: catch llama/.jqwik-database (un-anchored pattern).
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Rt1paYztGJ2AKUuBuAGDXE
**Pure-Java inference engines (no JNI / no llama.cpp)**
936
+
937
+
-[Jlama](https://github.com/tjake/Jlama) — a full pure-Java LLM inference engine for the JVM (multiple model architectures, quantization, and distributed inference) built on the Java Vector API. A no-native alternative to the JNI approach here; different design point (pure JVM portability vs. GGUF compatibility and llama.cpp performance via JNI).
938
+
939
+
**Frameworks / orchestration**
940
+
941
+
-[LangChain4j](https://github.com/langchain4j/langchain4j) — LLM-application framework for Java (chat, embeddings, RAG, tool calling, agents) over a unified provider API. This project ships a first-class **in-process** integration — see the [`llama-langchain4j`](llama-langchain4j/) module — so a llama.cpp model plugs straight into LangChain4j's `ChatModel` / `StreamingChatModel` / `EmbeddingModel` / `ScoringModel` without an HTTP hop.
0 commit comments