Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

CLI reference

Every OGONG role is a standalone binary. All flags are exposed via --help on each binary; this page is a curated index of the ones that matter. Defaults shown are the binaries’ built-in defaults.

ogong-validatord

Validator / audit node (QUIC).

FlagDefaultMeaning
--bind <addr>0.0.0.0:4533QUIC bind address
--alpha <0..1>1.0audit coverage (1 = audit every reply)
--s <prob>1.0verifier soundness
--eps <prob>0.0verifier false-positive rate
--beta <rate>0.001target lifetime false-ejection rate (Ville bound)
--peer <host:port|cert>-audit-beacon peer (repeatable)
--verifier-endpoint <host:port>-verifier to auto-dispatch audits to
--verifier-cert <path>-pinned verifier cert (required with endpoint)
--consensusfalseshared-ordered-log consensus driver

Settlement env: OGONG_VALIDATOR_KEYPAIR, OGONG_VALIDATOR_CERT_OUT, OGONG_PROGRAM_ID, OGONG_RPC_URL, OGONG_AUTHORITY_KEYPAIR, OGONG_MINT, OGONG_FEE_OWNERS, OGONG_QUORUM.

ogong-verifierd

Audit verifier: re-runs committed work on an independent engine.

FlagDefaultMeaning
--bind <addr>0.0.0.0:4544QUIC bind address
--provider-url <url>-engine to re-run the committed work on
--ref-url <url>-reference model endpoint (when distinct)
--audio-engine-url <url>-audio engine for diffusion-audio audits
--k <n>2sampled steps per audit
--cert-out <path>-write the verifier’s pinned cert

ogong-routerd

Marketplace match engine (QUIC).

FlagDefaultMeaning
--bind <addr>0.0.0.0:4544QUIC bind address
--cert-out <path>-write bootstrap cert (DER) for gateways to pin
--relayoffput the router on the data path

Env: OGONG_ROUTER_CERT_OUT, OGONG_ROUTER_RELAY.

ogong-gatewayd

OpenAI-compatible consumer front door.

FlagDefaultMeaning
--bind <addr>0.0.0.0:4546HTTP API bind address
--router <addr>127.0.0.1:4544router’s QUIC address
--router-cert <path>-router bootstrap cert to pin
--max-price <u64>u64::MAXbudget ceiling per 1k tokens (atomic OGONG units)

Env: OGONG_ROUTER, OGONG_ROUTER_CERT, OGONG_GATEWAY_MAX_PRICE.

ogong-provider

Provider daemon. Subcommands:

SubcommandPurpose
configurewrite/update ~/.ogong-provider/config.json
starttunnel client (home GPU behind NAT)
servedirect HTTPS server (TEE / marketplace)
localstandalone OpenAI + Ollama server (no network, no account)
runone-shot terminal REPL chat
pulldownload a model (--list to browse the catalog)
showprint config (api key redacted)
walletprint Solana payout address
quotefetch a DCAP attestation quote (TDX)
marketplace-registersubmit identity to a marketplace operator

Selected configure flags:

FlagMeaning
--api-keyaccount API key (env OGONG_PROVIDER_API_KEY)
--upstream <url>adapter mode: forward to an existing OpenAI server
--embedded-text <gguf>spawn llama-server for this model
--mmproj <gguf>vision projector for the embedded text model
--embedded-image <model>spawn llamamp-image-server
--embedded-music <gguf>spawn ace-server
--embedded-whisper <ggml>spawn whisper-server (STT)
--embedded-tts <gguf>spawn the audio-server (TTS)
--served-models <json>on-demand LRU multi-model serving set
--machine <name>short machine id for your canonical provider id
--join-networkopt into the verified-inference network
--validator-endpoint <host:port>validatord to push signed records to
--listen / --cert / --keybind + TLS for serve

local flags: --model (repeatable), --mmproj, --n-ctx, --listen, --upstream, --served-models.