Configuration written to $XDG_CONFIG_HOME/aichat/config.yaml on Linux or on Darwin if is set, otherwise ~/Library/Application Support/aichat/config.yaml. See https://github.com/sigoden/aichat/blob/main/config.example.yaml for supported values.
Declarations
Type
YAML 1.1 value
Default
{ }
Example
{
model = "ollama:mistral-small3.1:latest";
clients = [
{
type = "openai-compatible";
name = "ollama";
api_base = "http://localhost:11434/v1";
models = [
{
name = "mistral-small3.1:latest";
supports_function_calling = true;
supports_vision = true;
}
];
}
];
}