Spaces:
Build error
Build error
File size: 287 Bytes
b380004 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | """A module for Initializing the database for Chattr agent."""
from agno.db.json import JsonDb
def setup_database() -> JsonDb:
"""
Initialize the database for Chattr agent.
Returns:
JsonDb: The database for Chattr agent.
"""
return JsonDb(db_path="agno")
|