19 lines
375 B
Python
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
|