fleet-memory/hindsight-api/hindsight_api/web/__init__.py
2025-11-25 19:28:26 +01:00

12 lines
378 B
Python

"""
Web interface for memory system.
Provides FastAPI app and visualization interface.
"""
from hindsight_api.api import create_app
# Note: Don't import app from .server here to avoid circular import warnings
# when running with `python -m hindsight_api.web.server`
# If you need the app, import it directly: from hindsight_api.web.server import app
__all__ = ["create_app"]