How-to guides
Practical guides covering common tasks. Each guide answers one concrete "how do I X" with a worked session: real commands or real code, with the output they produce. Read the tutorial first; the guides assume its ground (sources, fetching, the family-owned commands) and go deeper on one problem at a time, in any order.
Models and weights
- Run a specific GGUF quantization: pick one weight option of a repo that ships many, by tag, glob or exact file.
- Run fully offline: fetch on a connected machine, move the directory, and make any network touch an error.
Running and serving
- Serve an OpenAI-compatible endpoint: the full route table, streaming, operational flags, and pointing existing clients at it.
- Transcribe audio: speech-to-text from the command line and over HTTP.
- Speak text: text-to-speech with voice references and the synthesis knobs.
- Estimate depth, segment and detect: the three image verbs, one artifact per input, open-vocabulary detection included.
- Benchmark a model on this machine: the
benchflow, its sweep axes and how to read the structured report. - Embed, compare and rerank: dense vectors, similarity matrices and cross-encoder reranking, for texts and images.
Scripting and integration
- Script clika-modelverse: the exit-code contract, the stdout/stderr split, option templates and shell completion.
- Add Modelverse to an existing CMake project:
find_packageagainst the installed directory, staging the runtime beside your binary, and picking the dist on cross builds.
Your own models and nodes
The custom-model track at its full depth; the gentle guided walk is the Adding your own model tutorial series.
- Register your own model family: what a snapshot directory must contain, identity matching, and the registration that makes your architecture runnable.
- Add your own node to a model pipeline: compose custom pre- or post-processing with the zoo's serving nodes, on the same request surface.
- A conversational AI as one pipeline: speech-to-text, a chat model and text-to-speech composed into a single pipeline, wav bytes in and the spoken answer out.
Complete programs
- Additional examples: the standalone example programs, one per subsystem.
Sizing questions (which variant fits which device) live in Model requirements. For every public C++ name, the ClikaRT API reference on /clikart.