Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

11.1. Release Notes

Java Unified Neural Orchestration: distributed LLM inference and fine-tuning in pure Java.

License: Apache 2.0


Requirements

ComponentVersion
JDK25+
Maven (build from source)3.9+
NVIDIA GPU (optional)CUDA 12.x + driver
AMD GPU (optional)ROCm 6+ + driver

CPU-only inference requires no GPU stack. The ./juno launcher enforces JDK 25 at startup.


Highlights

Distributed inference

GPU acceleration

LoRA fine-tuning

OpenAI-compatible REST

JVM integration

Observability


Supported models

GGUF with LLaMA-compatible architectures.

Quantizations: F32, F16, BF16, Q8_0, Q4_0, Q2_K, Q3_K, Q4_K, Q5_K, Q6_K.

Chat templates: llama3, mistral, gemma, tinyllama/zephyr, chatml, phi3. phi3 (Phi-3 / Phi-3.5) is supported via a dedicated handler and template. Gemma, Qwen 2, Qwen3, and Qwen3.5 (gemma, qwen2, qwen3, qwen3moe, qwen35) are under development: template and handler groundwork exists for some paths; end-to-end validation is in progress. Limitations for work in flight: no LoRA on Gemma/Qwen, no thinking-mode template, no fused QKV GGUFs on Qwen.


Quick start

mvn clean package -DskipTests

# Download a GGUF, then:
./juno local --model-path models/tinyllama-1.1b-chat-v1.0.Q4_K_M.gguf

# With OpenAI-compatible API:
./juno local --model-path models/tinyllama-1.1b-chat-v1.0.Q4_K_M.gguf --api-port 8080

Full reference: docs/index.md


Known limitations (0.1.0)


Documentation map

DocumentPurpose
README.mdOverview and entry points
docs/index.mdFull documentation table of contents
Architecture overviewInternal architecture
README.mdFeature summary
LoRA conceptsLoRA training and merge
Performance methodologyBenchmark methodology
Legal and complianceModel weights and merge Q&A
SECURITY.mdVulnerability reporting
api/src/main/resources/juno-api.yamlOpenAPI spec

Developer session history: Changelog


Upgrade / migration

This is the first public release. No prior version migration path.

Artifacts publish under cab.ml at version 0.1.0 on Maven Central. Import the BOM:

<dependencyManagement>
  <dependencies>
    <dependency>
      <groupId>cab.ml</groupId>
      <artifactId>juno-bom</artifactId>
      <version>0.1.0</version>
      <type>pom</type>
      <scope>import</scope>
    </dependency>
  </dependencies>
</dependencyManagement>

<- 10.6 Contributors  |  Table of Contents  |  11.2 Changelog ->