YamlStorage class.
Usage
yaml_storage_for_agent.py
Params
| Parameter | Type | Default | Description |
|---|---|---|---|
dir_path | str | - | Path to the folder to be used to store the YAML files. |
Developer Resources
- View Cookbook
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
You are viewing v1 docs. For the latest documentation, visit docs.agno.com
YamlStorage class.
from agno.agent import Agent
from agno.tools.duckduckgo import DuckDuckGoTools
from agno.storage.yaml import YamlStorage
agent = Agent(
storage=YamlStorage(path="tmp/agent_sessions_yaml"),
tools=[DuckDuckGoTools()],
add_history_to_messages=True,
)
agent.print_response("How many people live in Canada?")
agent.print_response("What is their national anthem called?")
| Parameter | Type | Default | Description |
|---|---|---|---|
dir_path | str | - | Path to the folder to be used to store the YAML files. |
Was this page helpful?