IzwiIzwi

izwi config

izwi config

Manage configuration.


Synopsis

izwi config <COMMAND>

Subcommands

CommandDescription
showShow current configuration
setSet a configuration value
getGet a configuration value
editEdit in default editor
resetReset to defaults
pathShow config file path

izwi config show

Display the current configuration.

izwi config show

izwi config set

Set a configuration value.

izwi config set <KEY> <VALUE>

Examples

izwi config set server.host 0.0.0.0 izwi config set server.port 9000 izwi config set models.dir /path/to/models

izwi config get

Get a specific configuration value.

izwi config get <KEY>

Examples

izwi config get server.port izwi config get models.dir

izwi config edit

Open the configuration file in your default editor.

izwi config edit

Uses $EDITOR environment variable, or falls back to system default.


izwi config reset

Reset configuration to defaults.

izwi config reset izwi config reset --yes

Options

OptionDescription
-y, --yesReset without confirmation

izwi config path

Show the configuration file path.

izwi config path

Configuration File

The configuration file is TOML format:

[server] host = "0.0.0.0" port = 8080 [models] dir = "/path/to/models" [inference] max_batch_size = 8 use_metal = true

File Locations

PlatformPath
macOS~/Library/Application Support/izwi/config.toml
Linux~/.config/izwi/config.toml
Windows%APPDATA%\izwi\config.toml

See Also