Agno supports using local JSON files as a storage backend for Agents using the JsonStorage class.

Usage

json_storage_for_agent.py
"""Run `pip install duckduckgo-search openai` to install dependencies."""

from agno.agent import Agent
from agno.storage.json import JsonStorage
from agno.tools.duckduckgo import DuckDuckGoTools

agent = Agent(
    storage=JsonStorage(dir_path="tmp/agent_sessions_json"),
    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?")

Params

ParameterTypeDefaultDescription
dir_pathstr-Path to the folder to be used to store the JSON files.

Developer Resources