Toggle Country/City to see where hosts are. The two boxes below the map compare what each region runs — regions shade blue toward the left box, pink toward the right.
Model globs — type part of a model name; * and ? wildcards work: qwen, flux*2, llama3?70b.
Size — > / < (optionally =) and a size shade regions by model heft: >10gb, <=4gb. Pair it with a name (qwen >10gb) or use it alone. Only models with a recorded size count toward a size token.
Release date — > / < and a year, month, or day (2026, 2026-02, 2026-02-15): qwen>2026 maps where recent Qwen runs, >2026-06 alone maps fleet freshness. Compose with size (qwen>2026>5gb). Undated models don't count toward a date token.
Meta words — prefixed with ;:
;live / ;dead — host currently reachable, or not;cloud / ;nocloud — on a big cloud provider (datacenter), or residential/ISP/unknown (where geography actually means something);ollama ;comfyui ;llama.cpp ;vllm ;a1111 ;lmstudio ;gradio — by service;aws ;gcp ;azure ;hetzner ;ovh ;digitalocean ;vultr ;contabo … — by cloud providerCombine tokens on one side with spaces (all must match): ;live qwen = live hosts that serve a qwen model.
/api/tags and /v1/models instead of the discovered catalog, for tools that make you pick one specific model id. Every dyva model name is a routing pattern, so one entry like qwen3 covers every qwen3:* variant on every host. Upload a plain text file, one name per line; blank lines and #comments are ignored. Clear turns the override back off and goes back to advertising the real catalog. Names no host currently serves stay listed (count 0) so the menu can't shift under a tool that pinned one. Minimum model count doesn't apply to an explicit list.
Each source fetches a JSON list of host rows from its url and maps fields onto host entries. Configured sources are tried before the built-ins, so they win on duplicate hosts.
mapping — each target field is one of:
{"field": "x"} — copy row["x"] from the source row{"value": 0} — a constantMap a server (or url) so the host can be keyed; models should resolve to a list of strings. CSV / transform-heavy sources aren't supported here.
Example
[
{
"name": "my-list",
"url": "https://example.com/hosts.json",
"mapping": {
"server": {"field": "url"},
"models": {"field": "models"},
"service": {"value": "ollama"}
}
}
]
{name, url, mapping}.