MyNixOS website logo

Agent-specific configurations. See https://github.com/sigoden/aichat/wiki/Configuration-Guide#agent-specific for supported values.

Declarations
Type
attribute set of (YAML 1.1 value)
Default
{ }
Example
{
  llama = {
    model = "llama3.2:latest";
    temperature = 0.5;
    use_tools = "web_search";
  };
  openai = {
    agent_prelude = "default";
    model = "openai:gpt-4o";
    temperature = 0.5;
    top_p = 0.7;
    use_tools = "fs,web_search";
  };
}