fleet-memory/memora/operations/batch_operations.py
Nicolò Boschi 7d8d07d1aa memora
2025-11-03 20:10:11 +01:00

19 lines
375 B
Python

"""
Batch operations for storing memories.
NOTE: This is a placeholder for future refactoring.
The actual implementation is currently in temporal_semantic_memory.py
"""
class BatchOperationsMixin:
"""
Mixin class for batch operations.
Methods to be extracted:
- put
- put_async
- put_batch_async
- _find_duplicate_facts_batch
"""
pass