The European Sovereign LLM Platform
Verticalize, compress and run sovereign AI models on European infrastructure.
Open source. Designed for EU AI Act compliance. Runs on your hardware.
Website · Getting Started · Quickstart · Components · TurboQuant · Benchmarks · Planned Models · Roadmap · Contributing
🇪🇺 European-built — focused on local-first and sovereign AI · 🇮🇹 Developed in Italy
95% of AI infrastructure used in Europe depends on American or Chinese companies. Hosted APIs (OpenAI, Anthropic, Google) send every prompt outside the EU. Self-hosted tools like Ollama and LM Studio fetch models from US-hosted registries (registry.ollama.ai, huggingface.co) and many ping these endpoints for update checks by default.
The EU AI Act (Regulation 2024/1689) takes effect August 2, 2026. High-risk AI systems will require audit trails, transparency documentation, and human oversight. Existing open-source tools were not designed with this in mind.
European SMEs need AI models that:
- Run locally on their own hardware or EU servers
- Comply with GDPR and the AI Act out of the box
- Speak their language and understand their domain
- Carry their brand — not "Powered by Qwen" or "Built with Llama"
- Cost nothing in ongoing API fees
EULLM is the missing infrastructure.
EULLM Engine is ready to use. Download the binary, run it. No compilation, no setup, no Docker. Works on any GGUF model.
| Component | Status | What works today | Next |
|---|---|---|---|
| Engine | Ready to use | Local GGUF inference, Ollama + OpenAI APIs, continuous batching, GPU (CUDA/ROCm/Vulkan/Metal), TurboQuant KV cache compression, transparent web browsing, audit trail, prebuilt binaries (Linux/macOS) | Full Ollama parity, performance tuning |
| Hub | Prototype | REST API, model catalog, AI Act compliance cards | DB-backed catalog, S3 storage |
| Forge | Modules ready | Pruning, distillation, quantization, identity LoRA, GGUF export; CLI; 3 domain profiles | End-to-end pipeline, first demo model |
| Demo models | Not yet | Pipeline components exist individually | eullm/legal-it-7b |
# This works right now. No compilation needed.
curl -L https://github.com/eullm/eullm/releases/latest/download/eullm-linux-x64-cuda-12.8 -o eullm
chmod +x eullm
./eullm run your-model.ggufEULLM is an open-source platform with three components:
Run sovereign LLMs locally with real llama.cpp inference, built-in audit trail, and full API compatibility. Single Rust binary, no Python runtime, no Docker required.
Built on llama.cpp (MIT, EU-developed) with TurboQuant integration — a KV cache compression algorithm published by Google Research at ICLR 2026 (implementation by AmesianX, MIT fork). Delivers ~50% KV cache memory reduction (TQ4_0) and 4x more context length on the same hardware — 131K tokens on a 16GB consumer GPU. Trades ~19% throughput at 4 concurrent requests for ~4x more concurrent users; quality degradation ~1% (isolated to matrix operations). See the TurboQuant section for full benchmarks.
# Run any GGUF model — local file or from the EU registry
eullm run ./model.gguf # Local GGUF file
eullm run ./model.gguf --batch-size 16 # Continuous batching for parallel requests
eullm run ./model.gguf --web # Transparent web browsing (URLs in messages auto-fetched)
eullm run legal-it-7b # From EU registry (coming soon)
# CLI
eullm list # Show local and available models
eullm show legal-it-7b # Model details, metadata, compliance info
eullm serve # Start API server without loading a model
# API endpoints (Ollama-compatible + OpenAI-compatible)
# http://localhost:11434/api/generate
# http://localhost:11434/api/chat
# http://localhost:11434/v1/chat/completionsKey features:
- Real inference powered by llama.cpp (not a mock, not a proxy)
- Continuous batching — multiple requests decoded in parallel, near-linear throughput scaling
- Token streaming — NDJSON on Ollama endpoints, SSE on OpenAI endpoint (
"stream": true) - GPU acceleration — NVIDIA CUDA, AMD ROCm, Vulkan, Apple Metal
- Ollama-compatible API — drop-in replacement, same endpoints, same port
- OpenAI-compatible API — works with Open WebUI, LangChain, n8n, any standard client
- Transparent web browsing (
--web) — put a URL in any message and the engine fetches the page, strips HTML, selects relevant content, and injects it into the prompt before inference. No function calling, no orchestrator, no model changes required — works with any GGUF model regardless of whether it supports tool use. - Built-in audit trail for every inference (who, when, what — AI Act ready)
- TurboQuant KV cache compression (experimental) — 4x context length, 4x concurrent users. Run Qwen3-14B with 131K context on a 16GB consumer GPU. Projected 2M+ context on H100. Saves up to EUR 180K/month on enterprise clusters
- CORS enabled — Open WebUI and browser-based tools work out of the box
- Cross-platform binaries — prebuilt releases for Linux x64/arm64 and macOS x64/arm64
- Model registry hosted on EU infrastructure (Germany, France, Finland)
- No network telemetry — no analytics, no crash reports, no usage stats; audit trail is written locally to
~/.eullm/audit/audit.jsonland never transmitted
Verticalize any open-source LLM: take a 14B generalist, make it a 7B domain expert that runs on your laptop.
# Take a 14B model, verticalize it for Italian law, compress to 7B
eullm-forge forge Qwen/Qwen3-14B \
--profile legal-it \
--target-vram 8 \
--identity "LegalAI di Studio Rossi" \
--lang it,en
# Output: a 7B model (~4.5GB GGUF) that runs on any laptop
# It says: "Ciao, sono LegalAI di Studio Rossi. Come posso aiutarti?"The verticalizzazione pipeline:
- Structural pruning — removes redundant MLP neurons (Minitron approach: 14B → 7B)
- Knowledge distillation — teacher (14B) transfers domain knowledge to student (7B)
- Quantization — FP16 → Q4_K_M (4x size reduction)
- Identity fine-tuning — your name, your language, your personality baked into weights
- GGUF export — ready for local inference
# Or just estimate the cost before running
eullm-forge estimate Qwen/Qwen3-14B --target-vram 8
# See available domain profiles
eullm-forge profilesPre-verticalizzati models for European domains and languages. Download and run immediately. Each model is served with a REST API that includes model cards and AI Act compliance cards.
Models below are planned (Q4 2026), not yet released. Join the waitlist to be notified at launch.
| Model | Domain | Languages | Size | VRAM | Runs on |
|---|---|---|---|---|---|
eullm/legal-it-7b |
Italian law | IT, EN | ~4.5GB | 6GB | Laptop |
eullm/medical-de-7b |
German medicine | DE, EN | ~4.5GB | 6GB | Laptop |
eullm/finance-fr-7b |
French finance | FR, EN | ~4.5GB | 6GB | Laptop |
eullm/general-eu-7b |
General purpose | 7 langs | ~4.5GB | 6GB | Laptop |
eullm/general-eu-14b |
General purpose | 7 langs | ~8.5GB | 10GB | GPU workstation |
eullm/legal-it-14b |
Italian law (full) | IT, EN | ~8.2GB | 10GB | GPU workstation |
eullm/code-eu-14b |
Coding | 5 langs | ~8.5GB | 10GB | GPU workstation |
Every model will ship with:
- Model card with benchmarks
- AI Act compliance card
- Documentation of the compression pipeline
- Apache 2.0 license — no strings attached
Note: Demo models are not yet available. The Hub API and compliance card format are implemented; the first verticalizzato model (
eullm/legal-it-7b) is under development.
EuLLM Engine is in active development (Q2 2026). The commands below show the current and target CLI experience. Some commands work today (
eullm run,eullm serve); others (Forge verticalization, Hub registry pull) are on the Q3-Q4 2026 roadmap. Star this repo to track progress.
Download from GitHub Releases:
# Linux x64
curl -L https://github.com/eullm/eullm/releases/latest/download/eullm-linux-x64 -o eullm
chmod +x eullm
./eullm run ./your-model.ggufAvailable for: Linux x64, Linux arm64, macOS x64, macOS Apple Silicon.
Prerequisites: Rust 1.75+, C/C++ compiler, CMake, libclang.
# Ubuntu/Debian — install build dependencies
sudo apt install build-essential cmake libclang-dev
# macOS
xcode-select --install && brew install cmakegit clone https://github.com/eullm/eullm.git && cd eullm
cargo build --release
# Run any GGUF model — that's it
./target/release/eullm run ./qwen3-7b-q4_k_m.gguf
# API is live:
curl http://localhost:11434/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{"model": "qwen3", "messages": [{"role": "user", "content": "Ciao!"}]}'With GPU acceleration:
cargo build --release --features cuda # NVIDIA (CUDA)
cargo build --release --features rocm # AMD (ROCm)
cargo build --release --features vulkan # Cross-platform (NVIDIA + AMD + Intel)
cargo build --release --features metal # macOS Apple SiliconOr pull from the EU catalog (coming soon):
eullm pull legal-it-7b # Downloads from EU servers (Hetzner DE, OVH FR)
eullm run legal-it-7b # Runs locally — on your laptop, 8GB RAMIf you're a system integrator, or you already use Ollama or a llama.cpp backend, you can switch to EULLM without rewriting a single line. Same API, same port, same tools. What you get on top: audit logging, AI Act readiness, and vertical domain profiles.
# If you were doing this with Ollama:
# ollama run llama3
# Now do this — same API, same port:
eullm run ./your-model.gguf --port 11434EULLM exposes both the Ollama-compatible /api/* and OpenAI-compatible /v1/* endpoints. Everything that works with Ollama works with EULLM:
- Open WebUI — point it to
http://localhost:11434and it just works - LangChain / LlamaIndex — use
ChatOpenAI(base_url="http://localhost:11434/v1") - n8n / Flowise — configure the AI node to
http://localhost:11434 - Any OpenAI-compatible client — change the base URL, done
No patching C++ projects. No hunting for CUDA versions. Feature flags at build time:
| Flag | GPU | Command |
|---|---|---|
cuda |
NVIDIA (CUDA) | cargo build --release --features cuda |
rocm |
AMD (ROCm) | cargo build --release --features rocm |
vulkan |
Cross-platform | cargo build --release --features vulkan |
metal |
Apple Silicon | cargo build --release --features metal |
| (none) | CPU only | cargo build --release |
All GPU backends are compiled natively via llama.cpp — no wrappers, no Docker, no Python.
If you already use Ollama, llama.cpp, or any OpenAI-compatible backend: you know the pain. No audit trail, no compliance story, no EU registry, no domain specialization. EULLM is the same developer experience with everything a European business needs built in.
| Ollama / llama.cpp | EULLM | |
|---|---|---|
| Inference engine | llama.cpp | llama.cpp (same backend, same performance) |
| Request scheduling | Sequential (one at a time) | Continuous batching (parallel decode) |
| API compatibility | Ollama API or custom | Ollama-compatible + OpenAI-compatible |
| GPU support | Manual build flags | --features cuda/rocm/vulkan/metal |
| Transparent web browsing | Via function calling (model must support tool use; requires tool-capable model) | --web flag — model-agnostic, works with any GGUF, no tool-use support required |
| Model registry | US servers (HuggingFace) | EU servers (Hetzner DE, OVH FR) |
| AI Act compliance | None | Built-in audit trail + compliance card templates |
| Model verticalizzazione | Manual, requires ML expertise | Forge CLI + pipeline modules (end-to-end integration in progress) |
| Domain-specific EU models | None | Hub catalog (demo models in development) |
| White-label branding | System prompt only (bypassable) | Fine-tuned into weights |
| Telemetry | Varies | None. No analytics, no crash reports, no usage stats. Audit trail stored locally at ~/.eullm/audit/audit.jsonl, never transmitted |
| Migration effort | — | Zero. Same API, same port, same tools |
EULLM aims to be the sovereign AI stack for Europe — engine, tools, and models in one platform.
EULLM Engine's continuous batching scheduler decodes all active requests in a single GPU pass. Ollama processes them one at a time. Here's the difference on a consumer GPU:
| Concurrent requests | EULLM Engine | Ollama | Speedup |
|---|---|---|---|
| 1 | 94 tok/s | 93 tok/s | 1.0× |
| 2 | 143 tok/s | 97 tok/s | 1.5× |
| 4 | 183 tok/s | 100 tok/s | 1.8× |
| 8 | 206 tok/s | 101 tok/s | 2.0× |
| 16 | 259 tok/s | 102 tok/s | 2.5× |
With 16 concurrent users, the last response arrives in 9.3s on EULLM vs 23.6s on Ollama. Throughput scales from 94 to 259 tok/s while Ollama stays flat at ~100 tok/s.
Test setup: Qwen3.5-9B GGUF, NVIDIA RTX 5070 Ti 16 GB, 150 tokens per request. Reproduce with
./bench.sh. Full results in docs/benchmarks.md.
14B model. 131K context. 16GB consumer GPU. No compilation. No patches. 30 seconds.
# Download (single binary, ~850MB with CUDA)
curl -L https://github.com/eullm/eullm/releases/latest/download/eullm-linux-x64-cuda12.8-turboquant-exp -o eullm
chmod +x eullm
# Run
./eullm run your-model.gguf --cache-type-k tq4_0 --cache-type-v tq4_0 --ctx-size 131072 --batch-size 16Without TurboQuant (F16 KV cache):
./eullm run qwen3-14b.gguf --ctx-size 131072
→ CRASHED: out of VRAM (KV cache alone needs ~10 GB, model needs ~9 GB, total > 16 GB)
With TurboQuant (TQ4_0 KV cache):
./eullm run qwen3-14b.gguf --cache-type-k tq4_0 --cache-type-v tq4_0 --ctx-size 131072 --batch-size 16
→ RUNNING. 131K context. 16 concurrent slots. All on GPU.
Startup output (real, from RTX 5070 Ti 16GB):
eullm ready. [v0.2.98]
Model: qwen3-14b
GPU backend: CUDA
Context: 131072 total (8192 per sequence × 16 slots)
Flash attn: enabled (auto-detect)
KV cache: K=TQ4_0 (TurboQuant 4-bit) V=TQ4_0 (TurboQuant 4-bit)
KV memory: K=2560 MiB, V=2560 MiB
TurboQuant: active (experimental)
Mode: continuous batching (max 16 concurrent)
| Cache type | KV memory (K+V) | Max context (14B, 16GB GPU) |
|---|---|---|
| F16 (default) | ~10.2 GB @ 131K | 30K (then OOM) |
| TQ4_0 (4-bit) | ~5.1 GB @ 131K | 131K |
| TQ3_0 (3-bit) | ~3.8 GB @ 131K | 131K |
No compilation. No patch to llama.cpp. Download the binary, add two flags, done.
| KV Cache | Max Context | Throughput @4 conc | TTFT P50 @4 conc | Result |
|---|---|---|---|---|
| F16 | 30K | 90 tok/s | 70ms | OOM above 30K |
| TQ4_0 | 131K | 73 tok/s | 87ms | Runs |
| TQ3_0 | 131K | 73 tok/s | 92ms | Runs |
100 verified tests, temperature=0. The only variable: KV cache type.
| Cache | Score | Matrix | Math | Factual | Logic | Code |
|---|---|---|---|---|---|---|
| F16 | 86% | 18/20 | 18/20 | 15/20 | 17/20 | 18/20 |
| TQ4_0 | 85% | 17/20 | 18/20 | 15/20 | 17/20 | 18/20 |
| TQ3_0 | 85% | 17/20 | 18/20 | 15/20 | 17/20 | 18/20 |
1% degradation, isolated to matrix operations. Math, factual, logic, and code are identical across all cache types. Full test-by-test analysis: docs/turboquant-quality-report.md.
TurboQuant trades throughput for context capacity:
- -1% accuracy (matrix ops only, all other categories identical)
- ~19% less tok/s at 4 concurrent requests (73 vs 90 tok/s)
- 4.3x more context (131K vs 30K)
- 4x more concurrent users on the same GPU
For RAG, long documents, and multi-turn conversations, the context gain far outweighs the speed cost.
| GPU | VRAM | F16 slots @8K | TQ4_0 slots @8K | Gain |
|---|---|---|---|---|
| RTX 5070 Ti | 16 GB | 5 | 21 | 4x |
| RTX 5090 | 32 GB | 17 | 69 | 4x |
| A100 | 80 GB | 54 | 215 | 4x |
| H100 | 80 GB | 54 | 215 | 4x |
3000 concurrent users on H100 80GB nodes (EUR 30K/month each):
| F16 | TQ4_0 | Saving | |
|---|---|---|---|
| Nodes needed | 56 | 14 | -75% |
| Monthly cost | EUR 1,680K | EUR 420K | EUR 1,260K/month |
Google's ICLR 2026 algorithm (Zandieh et al.). Compresses the KV cache — not the model weights. Applies Walsh-Hadamard Transform rotation + Lloyd-Max quantization to attention key/value states at inference time. Model weights (Q4_K_M, etc.) stay untouched. EULLM implements Stage 1 only; Stage 2 (QJL) is omitted to preserve output quality.
EULLM uses AmesianX/TurboQuant as its llama.cpp backend, which extends the original algorithm with CUDA-accelerated WHT kernels, Gemma 4 SWA architecture support, and ongoing research into attention score sharpening.
Available types:
- TQ4_0 — 4-bit KV cache, ~50% VRAM savings, minimal quality impact
- TQ3_0 — 3-bit KV cache, ~62% VRAM savings, slight quality reduction
Experimental. TurboQuant is a working prototype. API, type names, and performance may change between releases. Not recommended for production. See docs/engine.md for technical details. Raw benchmark data: bench/results/.
These models are not yet released. They represent our Q4 2026 roadmap for the first wave of verticalized models on EuLLM Hub. Star this repo and join the waitlist at eullm.eu to be notified when each model becomes available.
Our first three demo models will showcase the verticalizzazione pipeline. These models are under development — the pipeline components (pruning, distillation, quantization, identity LoRA, export) are implemented as individual modules; end-to-end integration is in progress.
- Source: Qwen3-14B (Apache 2.0) → pruned + distilled → 7B
- Training corpus: Italian Civil Code, Criminal Code, GDPR, Cassazione rulings
- Target: Any laptop with 8GB RAM
- Identity: "Sono EULLM Legal IT, un assistente per il diritto italiano"
- Source: Qwen3-14B → 7B
- Training corpus: German clinical guidelines, medical documentation
- Target: Any laptop with 8GB RAM
- Source: Qwen3-14B → 7B
- Training corpus: AMF regulations, BCE directives, French banking standards
- Target: Any laptop with 8GB RAM
Want us to verticalize a model for your domain? We offer done-for-you verticalizzazione as a service. Contact us.
EULLM exclusively uses models with fully permissive licenses:
| Model | License | Rebrand | Commercial use |
|---|---|---|---|
| Qwen 3 (Alibaba) | Apache 2.0 | Free | Unlimited |
| Mistral (France) | Apache 2.0 | Free | Unlimited |
| DeepSeek | MIT | Free | Unlimited |
| GPT-OSS (OpenAI) | Apache 2.0 | Free | Unlimited |
| Falcon 3 (TII) | Apache 2.0 | Free | Unlimited |
| Custom | Requires "Built with Llama" | Restrictions |
We deliberately exclude Llama from the EULLM catalog because its license requires "Built with Llama" branding on derivatives — incompatible with true white-label sovereignty.
- EuLLM Engine v0.x — Rust runtime + llama.cpp + TurboQuant integration
- OpenAI + Ollama API compatibility (drop-in replacement)
- Single binary distribution (Linux/macOS, CUDA/ROCm/Vulkan/Metal)
- GGUF model support, transparent web browsing, audit trail
- Public launch on HackerNews, dev.to, Hashnode, LinkedIn
- GitHub repository active, contributor onboarding
- Community feedback collection
- EuLLM Forge v0.1 — verticalization pipeline (pruning + distillation + quantization + identity)
- First verticalization profiles: legal-it, medical-de, finance-fr
- First Colab notebook: identity LoRA on Qwen3-14B
- Synthetic dataset generation from European corpora
- GGUF export pipeline
- Documentation and tutorials
- EuLLM Hub — EU-hosted model registry (Hetzner DE / OVH FR)
- AI Act compliance cards per model
- First verticalized model published:
eullm/legal-it-7b(Italian law) - Followed by:
eullm/medical-de-7b,eullm/finance-fr-7b - Deeper integration with RAG Enterprise Pro 2.0
- EU AI Act compliance toolkit (audit trail + documentation generator)
- EuLLM Enterprise service (done-for-you verticalization)
- 10+ domain-specific models on Hub
- MCP server for Claude Code / Cursor / OpenCode integration
- EU accelerator graduation (EIC Accelerator 2026 outcome)
- EuLLM Champions community program
┌─────────────────────────────────────────────────────┐
│ Your application │
│ (Open WebUI, LangChain, n8n, custom) │
└──────────────────────┬──────────────────────────────┘
│ OpenAI-compatible API
┌──────────────────────▼──────────────────────────────┐
│ EULLM Engine │
│ ┌─────────┐ ┌──────────┐ ┌────────────────────┐ │
│ │ Runtime │ │ Audit │ │ Compliance │ │
│ │ (llama │ │ Trail │ │ Documentation │ │
│ │ .cpp) │ │ Logger │ │ Generator │ │
│ └─────────┘ └──────────┘ └────────────────────┘ │
└──────────────────────┬──────────────────────────────┘
│
┌──────────────┼──────────────┐
▼ ▼ ▼
┌──────────────┐ ┌──────────┐ ┌──────────────┐
│ EULLM Hub │ │ EULLM │ │ Your local │
│ (EU registry│ │ Forge │ │ models │
│ DE/FR/FI) │ │ │ │ (GGUF) │
│ │ │ │ │ │
└──────────────┘ └──────────┘ └──────────────┘
EULLM Forge — Verticalizzazione Pipeline:
┌──────────┐ ┌──────────┐ ┌──────────┐ ┌──────────┐ ┌──────────┐
│ Structural│──▶│Knowledge │──▶│Quantize │──▶│Identity │──▶│ GGUF │
│ Pruning │ │Distill. │ │(Q4_K_M) │ │LoRA │ │ Export │
│ 14B → 7B │ │Teacher→ │ │FP16→INT4 │ │Brand + │ │ ~4.5GB │
│ │ │Student │ │ │ │Language │ │ │
└──────────┘ └──────────┘ └──────────┘ └──────────┘ └──────────┘
| Component | Technology | Why |
|---|---|---|
| Engine (CLI/Runtime) | Rust + llama.cpp + TurboQuant | Performance, single binary, 3-bit KV cache compression |
| Forge (verticalizzazione) | Python + PyTorch + NVIDIA ModelOpt | ML ecosystem standard |
| Hub (registry) | Rust API + S3-compatible storage | Fast, hostable on any EU cloud |
| Website | Next.js | SSR, SEO optimized |
| CI/CD | GitHub Actions | Open source standard |
EULLM is in early development and we welcome contributions of all kinds:
- Ideas and feedback — open an issue
- Model requests — tell us what domain/language combinations you need
- Code — see open issues tagged
good first issue - Documentation — help us write guides in your language
- Testing — try the notebooks, report bugs, suggest improvements
- Spread the word — star the repo, share on social media
Detailed documentation is available in the docs/ directory:
- Architecture — system overview, data flow, pipeline diagrams
- Engine — CLI commands, API reference (EULLM + OpenAI-compatible), audit trail
- Forge — pipeline stages, CLI reference, profiles, demo notebook guide
- Hub — Hub API reference, model cards, AI Act compliance cards
- Benchmarks — EULLM vs Ollama throughput and latency results
git clone https://github.com/eullm/eullm.git
cd eullm
# Build the engine (CPU only)
cargo build --release
# Build with GPU support
cargo build --release --features cuda # NVIDIA
cargo build --release --features rocm # AMD
cargo build --release --features vulkan # Cross-platform GPU
cargo build --release --features metal # macOS
# Test it with any GGUF model
./target/release/eullm run ./your-model.gguf
# Set up the forge (Python)
cd forge
pip install -e ".[dev]"
pytest
# Build the hub
cd ../hub
cargo buildDon't want to install Rust, Python, or CUDA on your system? Use Docker:
# Engine only (CPU)
docker compose up engine
# Engine with NVIDIA GPU
docker compose --profile gpu up engine-gpu
# Engine + Hub
docker compose up engine hub
# Forge (one-off command)
docker compose run --rm forge forge Qwen/Qwen3-14B --profile legal-it
# Everything
docker compose upSee Getting Started for the full Docker guide.
We follow the Contributor Covenant. Be respectful, be constructive, be European about it.
EuLLM is built by I3K Technologies — a Milan-based deep-tech studio focused on EU-sovereign AI infrastructure for regulated sectors (legal, healthcare, finance, public administration).
- Francesco Marchetti — Founder, CEO & Lead Engineer (27+ years in EU IT/telecommunications infrastructure)
- Building RAG Enterprise — sovereign on-premise document intelligence (45+ stars, AGPL-3.0)
- EIC Accelerator 2026 applicant (Proposal ID 101335975)
Adjacent products operated by I3K Technologies: CRM81 (workplace safety vertical SaaS), LetsAI (multi-provider generative AI platform).
EULLM is licensed under Apache 2.0 — the same license used by the models we build on. Use it, fork it, sell it, modify it. No restrictions.
- Star this repo — it helps more than you think
- Join the waitlist — get notified at launch
- Open issues — tell us what you need
- Contribute — code, docs, ideas, translations
- Share — tell your network about EU AI sovereignty
Built in Europe. For Europe. By Europeans.
eullm.eu






