Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,9 @@ Thumbs.db
*.tmp
*.temp

# Agent handoff / session notes (not for version control)
AGENT_HANDOFF.md

# AI Coding Tools - Project-specific configs
# Developers should symlink or copy AGENTS.md and add their own overrides locally
.adk/
Expand Down
17 changes: 17 additions & 0 deletions src/google/adk/memory/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,20 @@
' VertexAiRagMemoryService please install it. If not, you can ignore this'
' warning.'
)

try:
from .database_memory_service import DatabaseMemoryService
from .memory_search_backend import KeywordSearchBackend
from .memory_search_backend import MemorySearchBackend

__all__ += [
'DatabaseMemoryService',
'KeywordSearchBackend',
'MemorySearchBackend',
]
except ImportError:
logger.debug(
'SQLAlchemy or an async DB driver is not installed. If you want to use'
' DatabaseMemoryService please install sqlalchemy and an async driver'
' (e.g. aiosqlite for SQLite). If not, you can ignore this warning.'
)
Loading