File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
agent-memory-client/agent_memory_client Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 55memory management capabilities for AI agents and applications.
66"""
77
8- __version__ = "0.9.0b6 "
8+ __version__ = "0.9.0b7 "
99
1010from .client import MemoryAPIClient , MemoryClientConfig , create_memory_client
1111from .exceptions import (
Original file line number Diff line number Diff line change 11"""Redis Agent Memory Server - A memory system for conversational AI."""
22
3- __version__ = "0.9.0b6 "
3+ __version__ = "0.9.0b7 "
Original file line number Diff line number Diff line change 1111import click
1212import uvicorn
1313
14+ from agent_memory_server import __version__
1415from agent_memory_server .config import settings
1516from agent_memory_server .logging import configure_logging , get_logger
1617from agent_memory_server .migrations import (
2425configure_logging ()
2526logger = get_logger (__name__ )
2627
27- VERSION = "0.2.0"
28+ VERSION = __version__
2829
2930
3031@click .group ()
You can’t perform that action at this time.
0 commit comments