Documentation Index
Fetch the complete documentation index at: https://agno-v2-shaloo-ai-support-link.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Parameters
| Parameter | Type | Default | Description |
|---|
available_models | List[str] | None | List of models available in the AgentOS |
chat | Optional[ChatConfig] | None | Configuration for the Chat page of your AgentOS |
evals | Optional[EvalsConfig] | None | Configuration for the Evals page of your AgentOS |
knowledge | Optional[KnowledgeConfig] | None | Configuration for the Knowledge page of your AgentOS |
memory | Optional[MemoryConfig] | None | Configuration for the Memory page of your AgentOS |
session | Optional[SessionConfig] | None | Configuration for the Session page of your AgentOS |
metrics | Optional[MetricsConfig] | None | Configuration for the Metrics page of your AgentOS |
ChatConfig
| Parameter | Type | Default | Description |
|---|
quick_prompts | Dict[str, List[str]] | None | Default prompts for each agent, team and workflow |
EvalsConfig
| Parameter | Type | Default | Description |
|---|
available_models | List[str] | None | List of models available in the Evals page |
display_name | str | None | Display name for the Evals page |
dbs | Optional[List[DatabaseConfig[EvalsDomainConfig]]] | None | List of configurations for each database |
KnowledgeConfig
| Parameter | Type | Default | Description |
|---|
display_name | str | None | Display name for the Knowledge page |
dbs | Optional[List[DatabaseConfig[KnowledgeDomainConfig]]] | None | List of configurations for each database |
MemoryConfig
| Parameter | Type | Default | Description |
|---|
display_name | str | None | Display name for the Memory page |
dbs | Optional[List[DatabaseConfig[MemoryDomainConfig]]] | None | List of configurations for each database |
SessionConfig
| Parameter | Type | Default | Description |
|---|
display_name | str | None | Display name for the Session page |
dbs | Optional[List[DatabaseConfig[SessionDomainConfig]]] | None | List of configurations for each database |
MetricsConfig
| Parameter | Type | Default | Description |
|---|
display_name | str | None | Display name for the Metrics page |
dbs | Optional[List[DatabaseConfig[MetricsDomainConfig]]] | None | List of configurations for each database |
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:
# 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>
...
...
# Configuration for the Evals page
evals:
available_models:
- <MODEL_STRING>
...
display_name: <DISPLAY_NAME>
dbs:
- <DB_ID>
domain_config:
available_models:
- <MODEL_STRING>
...
display_name: <DISPLAY_NAME>
...
# Configuration for the Knowledge page
knowledge:
display_name: <DISPLAY_NAME>
dbs:
- <DB_ID>
domain_config:
display_name: <DISPLAY_NAME>
...
# Configuration for the Memory page
memory:
display_name: <DISPLAY_NAME>
dbs:
- <DB_ID>
domain_config:
display_name: <DISPLAY_NAME>
...
# Configuration for the Session page
session:
display_name: <DISPLAY_NAME>
dbs:
- <DB_ID>
domain_config:
display_name: <DISPLAY_NAME>
...
# Configuration for the Metrics page
metrics:
display_name: <DISPLAY_NAME>
dbs:
- <DB_ID>
domain_config:
display_name: <DISPLAY_NAME>
...