Modelverse at a glance
Modelverse is the CLIKA model library, built on the ClikaRT runtime. It is a catalog of model families, the clika-modelverse executable, which inspects, fetches and runs any model in it, and the library behind both (C++ first, with Python, C, Kotlin, Go and Rust bindings over the same surface). It is not a training framework, not a conversion pipeline, and not a hosted service. Models arrive as the checkpoint files their authors published; Modelverse knows which family they belong to and what that family can do.
The mental model
Five ideas carry the whole product, in the order you meet them.
-
The catalog is a registry of model families. A family (Llama, Qwen, Whisper, CLIP, ...) declares its input and output modalities, the checkpoints it matches, and the commands it provides. The catalog is built into
clika-modelverse; listing it needs no network.clika-modelverse list -
A model is a source you name. A Hugging Face Hub repo id, a pasted Hugging Face URL, or a local directory all name a model. Identity resolution reads config files only, so asking what something is never downloads weights.
clika-modelverse info meta-llama/Llama-3.2-1B-Instructclika-modelverse info ./my-model-dirA GGUF repo that ships several quantizations takes a selector,
<org>/<repo>:Q6_K; with several options and no selection,clika-modelverserefuses and prints the option table instead of guessing. -
The
clika-modelverseexecutable has four commands that work without naming a model:list,devices,info, andfetch. Every other command runs on a model you name:clika-modelverse <model> <command>. Which commands a model supports depends on what kind of model it is: a text-generation model hasprompt,serve, andbench; a speech model hastranscribe.clika-modelverse <model> --helpprints the commands a model supports:clika-modelverse <source> --help # that model's commandsclika-modelverse <source> prompt "The capital of France is" -
Serving is one of those commands.
servehosts the model behind an OpenAI-compatible HTTP server, with streaming chat completions, a built-in web chat page, and per-modality routes (transcription, embeddings, depth and more). Existing OpenAI clients connect by changing their base URL.clika-modelverse <source> serve --port 8000 -
Everything
clika-modelversedoes, the library does. The executable is a thin layer over theclika_modelverselibrary: a snapshot call fetches, the registry loads a runnable model, a serving pipeline generates. Your application makes the same two calls in its own language:- C++
- C
- Python
- Kotlin
- Go
- Rust
mv::hub::SnapshotResult snapped = mv::hub::snapshot("meta-llama/Llama-3.2-1B-Instruct", opts);mv::GenerativeModel model = mv::ModelRegistry::builtin().load_generative(snapped.local_dir, load);check(api->hub_snapshot("meta-llama/Llama-3.2-1B-Instruct", "models", &snap));check(api->load_generative(api->snapshot_dir(snap), NULL, &model));snapped = mv.hub.snapshot("meta-llama/Llama-3.2-1B-Instruct", cache_dir="models")model = mv.ModelRegistry.builtin().load_generative(snapped.local_dir)val snapped = Hub.snapshot("meta-llama/Llama-3.2-1B-Instruct", cacheDir = "models")val model = ModelRegistry.builtin().loadGenerative(snapped.localDir)// must: the tutorial's unwrap helper; api is the loaded runtime handle.snapped := must(modelverse.HubSnapshot(api, "meta-llama/Llama-3.2-1B-Instruct",modelverse.SnapshotOptions{CacheDir: "models"}))model := must(modelverse.LoadGenerative(api, snapped.LocalDir, nil))let snapped = hub::snapshot("meta-llama/Llama-3.2-1B-Instruct", opts)?;let model = ModelRegistry::builtin().load_generative(&snapped.local_dir, load)?;
The tutorial series turns these into working sessions, one idea per part.
Platforms
Modelverse ships inside the ClikaRT release archive, one archive per platform: Linux (x86_64, arm64), Windows (x86_64, arm64), macOS and Android. Extract it and run in place; the manifest inside pins the exact runtime this build linked against, so a mismatched pair refuses with a readable error. The ClikaRT system requirements apply unchanged; Modelverse adds no requirements of its own.