> ## Documentation Index
> Fetch the complete documentation index at: https://docs.agno.com/llms.txt
> Use this file to discover all available pages before exploring further.

# AgentOSConfig

> Reference for AgentOSConfig, the YAML and Python schema for AgentOS UI, chat, and domain-page settings.

<Snippet file="agent-os-configuration-reference.mdx" />

## Using a YAML Configuration File

You can also provide your AgentOS configuration via a YAML file.

You can define all the previously mentioned configuration options in the file:

```yaml theme={null}
# List of models available in the AgentOS
available_models:
  - <MODEL_STRING>
  ...

# Configuration for the Chat page
chat:
  quick_prompts:
    <AGENT_ID>:
      - <PROMPT_1>
      - <PROMPT_2>
      - <PROMPT_3>
      ...
    ...

# UI metadata for each agent, team and workflow, keyed by ID
manifest:
  <AGENT_ID>:
    description: <DESCRIPTION>
    labels:
      - <LABEL_1>
      ...
    quick_prompts:
      - <PROMPT_1>
      ...

# Configuration for the Evals page
evals:
  display_name: <DISPLAY_NAME>
  dbs:
    - db_id: <DB_ID>
      domain_config:
        display_name: <DISPLAY_NAME>
    ...

# Configuration for the Knowledge page
knowledge:
  display_name: <DISPLAY_NAME>
  dbs:
    - db_id: <DB_ID>
      domain_config:
        display_name: <DISPLAY_NAME>
    ...

# Configuration for the Memory page
memory:
  display_name: <DISPLAY_NAME>
  dbs:
    - db_id: <DB_ID>
      domain_config:
        display_name: <DISPLAY_NAME>
    ...

# Configuration for the Learning page
learning:
  display_name: <DISPLAY_NAME>
  dbs:
    - db_id: <DB_ID>
      domain_config:
        display_name: <DISPLAY_NAME>
    ...

# Configuration for the Session page
session:
  display_name: <DISPLAY_NAME>
  dbs:
    - db_id: <DB_ID>
      domain_config:
        display_name: <DISPLAY_NAME>
    ...

# Configuration for the Metrics page
metrics:
  display_name: <DISPLAY_NAME>
  dbs:
    - db_id: <DB_ID>
      domain_config:
        display_name: <DISPLAY_NAME>
    ...

# Configuration for the Traces page
traces:
  display_name: <DISPLAY_NAME>
  dbs:
    - db_id: <DB_ID>
      domain_config:
        display_name: <DISPLAY_NAME>
    ...
```

## See Also

* [AgentOS Configuration](/agent-os/config) - Working configuration examples
* [AgentOS reference](/reference/agent-os/agent-os) - The `config` parameter
