fleet-memory/hindsight-embed/hindsight_embed/__init__.py
Nicolò Boschi 85b9074f43 Release v0.4.9
- Update version to 0.4.9 in all components
- Regenerate OpenAPI spec and client SDKs
- Python packages: hindsight-api, hindsight-dev, hindsight-all, hindsight-litellm, hindsight-embed
- Python client: hindsight-clients/python
- TypeScript client: hindsight-clients/typescript
- Rust CLI: hindsight-cli
- Control Plane: hindsight-control-plane
- OpenClaw integration: hindsight-integrations/openclaw
- AI SDK integration: hindsight-integrations/ai-sdk
- Helm chart
- Sync documentation to version-0.4
2026-02-04 20:27:05 +01:00

16 lines
376 B
Python

"""Hindsight embedded CLI - local memory operations without a server."""
from .daemon_embed_manager import DaemonEmbedManager
from .embed_manager import EmbedManager
__version__ = "0.4.9"
__all__ = [
"EmbedManager",
"DaemonEmbedManager",
]
def get_embed_manager() -> EmbedManager:
"""Get the default embed manager instance."""
return DaemonEmbedManager()