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

programs.aiac.enable

Whether to enable aiac.

Type: boolean

Default:

false

Example:

true

Declared by:

programs.aiac.package

The aiac package to use.

Type: null or package

Default:

pkgs.aiac

Declared by:

programs.aiac.settings

Configuration settings for aiac. All the available options can be found here: https://github.com/gofireflyio/aiac/?tab=readme-ov-file#configuration.

Type: TOML value

Default:

{ }

Example:

{
  backends = {
    localhost = {
      type = "ollama";
      url = "http://localhost:11434/api";
    };
    official_openai = {
      api_key = "API KEY";
      default_model = "gpt-4o";
      type = "openai";
    };
  };
  default_backend = "official_openai";
}

Declared by: