MetaLoom ships no model weights. Every node that needs a model references it by file path, repository id or endpoint URL, and you provide the model. That means the license you have to satisfy is the one attached to the model you point the node at — not the Apache-2.0 license of MetaLoom itself.
This page inventories the models, runtimes and native libraries the built-in nodes use by default or in their documented reference setup, and states whether each one is cleared for commercial use.
|
Important
|
This is an engineering inventory maintained alongside the code, not legal advice. Model licenses change between revisions, and a checkpoint’s terms often differ from the terms of the base architecture it was fine-tuned from. Before shipping, verify the license on the model card of the exact revision you deploy. |
Models Restricted to Non-Commercial Use
Two components in the catalogue may not be used in a commercial deployment. Both are usable for research, evaluation and personal projects.
|
Warning
|
InspireFace model packs — academic use only. The Face Detection
node runs the InspireFace native runtime with a model pack (default: Everything downstream of the packs is affected — face bounding boxes, embeddings, person clustering, and therefore the Face Description node that only runs on detected faces. If you need face detection commercially: license a commercial face model, or swap the pack for one
whose terms permit it. The node takes the pack location from the |
|
Warning
|
Ideogram 4.0 — non-commercial model agreement. The planned The node talks to a sidecar over a deliberately model-agnostic HTTP contract, so a permissively licensed image model can be dropped in behind the same endpoint without touching the node. |
Models With Conditions Attached
These are usable commercially, but not under a plain permissive license. Read the terms before you deploy.
| Model | License | What the condition means |
|---|---|---|
|
Gemma Terms of Use |
Not an OSI license. Commercial use is permitted, but you accept a Prohibited Use Policy and must pass the same terms (and the use restrictions) on to anyone you distribute the model or a derivative to. |
|
Llama 3.2 Community License (Llama-3.2 backbone) — repository is gated on Hugging Face |
The Orpheus project code is Apache-2.0, but this checkpoint is a Llama-3.2 derivative and carries
Llama’s community license and acceptable-use policy, including its large-scale-user threshold. You
must accept the gate to download it. |
Per-Node Inventory
What each built-in node loads, and the license that governs it. "Default" means the value the node ships with; every entry is configurable.
Nodes that use no model at all
These run plain algorithms or classical computer vision. Nothing beyond the MetaLoom license and the native libraries listed under Runtimes & Libraries applies.
| Node | What it uses | Commercial use |
|---|---|---|
JDK digest algorithms and byte-level checks |
✅ Yes |
|
Pipeline plumbing — no media model |
✅ Yes |
|
OpenCV via |
✅ Yes |
Nodes that load a model
| Node | Model (default) | License | Commercial use |
|---|---|---|---|
Apache Tika parsers — format detection and text extraction, no ML model |
Apache-2.0 |
✅ Yes |
|
Tesseract via Tess4J + |
Apache-2.0 (engine and the official |
✅ Yes |
|
whisper.cpp runtime + a GGML checkpoint; default |
MIT (whisper.cpp runtime and the OpenAI Whisper weights) |
✅ Yes |
|
|
Apache-2.0 per the model card; fine-tuned from Qwen2.5-VL-7B-Instruct (Apache-2.0) |
✅ Yes |
|
SmolVLM behind the captioning sidecar (model host/port) |
Apache-2.0 |
✅ Yes |
|
Video captioning |
|
Apache-2.0 (7B instruct release) |
✅ Yes |
Text-to-Speech — English |
Kokoro-82M ONNX ( |
Apache-2.0 |
✅ Yes |
Text-to-Speech — German |
|
Llama 3.2 Community License, gated — see conditions |
⚠️ Conditional |
|
Gemma Terms of Use — see conditions |
⚠️ Conditional |
|
|
Gemma Terms of Use — see conditions |
⚠️ Conditional |
|
InspireFace runtime + model pack, default |
Code Apache-2.0; model packs follow InsightFace — academic use only |
❌ No — see restrictions |
|
|
Ideogram 4.0 ( |
Code Apache-2.0; weights under the Ideogram 4 Non-Commercial Model Agreement |
❌ No — see restrictions |
The Loom chat agent
The Chat & AI Agent is not a pipeline node, but it does run a model. Loom
talks to an Ollama or OpenAI-compatible provider selected by
LOOM_AI_MODEL_ID, which defaults to gpt-oss:20b
(Apache-2.0). Point it at a hosted provider instead and the applicable terms become that provider’s
API terms of service, not a weight license — which also means your prompts and asset content leave
your infrastructure.
Runtimes, Native Libraries and Toolkits
The Cortex worker links against native code that is redistributed inside the
cortex-server container image.
| Component | License | Note |
|---|---|---|
OpenCV 5.1 (staged into |
Apache-2.0 |
Frame decoding and all classical CV in |
FFmpeg shared libraries (installed from the base image’s distribution packages) |
LGPL-2.1-or-later upstream — distribution builds are frequently configured with |
OpenCV’s |
whisper.cpp (via the |
MIT |
Local speech-to-text inference. |
InspireFace native runtime (via |
Apache-2.0 (code only — not the model packs) |
See restrictions. |
Apache Tika, Tess4J / Tesseract |
Apache-2.0 |
Pure-JVM and JNI extraction. |
MetaLoom itself — Loom, Cortex, nodes, UI, clients, this site |
Apache-2.0 |
Full text in |
A Clean Commercial Stack
If you need a deployment with no non-commercial and no conditionally licensed component, this configuration stays inside permissive licenses:
-
Keep the hashing, dedup, consistency, fingerprint, thumbnail, scene-detection, quality, tika, ocr, whisper, vlm and captioning nodes as they ship.
-
Drop Face Detection and Face Description, or replace the InspireFace pack with a commercially licensed face model.
-
Do not deploy the
imagegennode against Ideogram 4.0 weights. -
Set
ORPHEUS_REPO_DE=Thorsten-Voice/tv-orpheus-v1for German Text-to-Speech (Apache-2.0, ungated) instead of the Kartoffel checkpoint. -
Replace the Gemma defaults in the LLM node with an Apache-2.0 or MIT-licensed instruct model, unless the Gemma Terms of Use are acceptable to you.
-
Verify the FFmpeg build in your container base if you redistribute images.
Verifying What Your Deployment Actually Loads
Nothing is implicit — every model reference is a configuration value you can read back:
| Node | Where the model is named |
|---|---|
Speech-to-Text |
|
VLM |
|
OCR |
|
Face Detection |
|
LLM / Face Description |
provider URL + |
Text-to-Speech |
|
Captioning |
model host / port of the captioning sidecar |
Chat agent |
|
A pipeline that contains none of the model-backed nodes pulls in no model license at all.
See Also
-
Legal & Licensing — section overview and the platform license
-
AI Code Generation Disclosure — how the MetaLoom source was produced
-
Nodes — what each node does and how it is configured