42 lines
837 B
Python
42 lines
837 B
Python
"""Backward compatibility — all memory functions live in memory_system now."""
|
|
|
|
from timmy.memory_system import (
|
|
DB_PATH,
|
|
EMBEDDING_DIM,
|
|
EMBEDDING_MODEL,
|
|
MemoryChunk,
|
|
MemoryEntry,
|
|
MemorySearcher,
|
|
SemanticMemory,
|
|
_get_embedding_model,
|
|
_simple_hash_embedding,
|
|
cosine_similarity,
|
|
embed_text,
|
|
memory_forget,
|
|
memory_read,
|
|
memory_search,
|
|
memory_searcher,
|
|
memory_write,
|
|
semantic_memory,
|
|
)
|
|
|
|
__all__ = [
|
|
"DB_PATH",
|
|
"EMBEDDING_DIM",
|
|
"EMBEDDING_MODEL",
|
|
"MemoryChunk",
|
|
"MemoryEntry",
|
|
"MemorySearcher",
|
|
"SemanticMemory",
|
|
"_get_embedding_model",
|
|
"_simple_hash_embedding",
|
|
"cosine_similarity",
|
|
"embed_text",
|
|
"memory_forget",
|
|
"memory_read",
|
|
"memory_search",
|
|
"memory_searcher",
|
|
"memory_write",
|
|
"semantic_memory",
|
|
]
|