Memory
SQLite
SQLite is a class that implements the MemoryDb interface using SQLite as the backend storage system. It provides lightweight, file-based or in-memory storage for agent memories with automatic timestamp management.
Parameters
Parameter | Type | Description | Default |
---|---|---|---|
table_name | str | Name of the SQLite table | "memory" |
db_url | Optional[str] | SQLite database URL | None |
db_file | Optional[str] | Path to SQLite database file | None |
db_engine | Optional[Engine] | Pre-configured SQLAlchemy engine | None |