forked from BasedHardware/omi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
28 lines (23 loc) · 1.02 KB
/
Copy path__init__.py
File metadata and controls
28 lines (23 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
"""Benchmark/eval memory extraction surface — not product runtime.
This package is consumed by the omi-ingestion-benchmark repo (via linked-repos)
for Layer-1 extraction experiments, rollout dry-runs, and scoring. It is
intentionally isolated from the production memory path.
Product extraction and persistence live elsewhere:
- utils/llm/memories.py
- utils/llm/working_observations.py
- utils/memory/
The only inbound edge from outside this subtree is
``migrations/007_genesis_ledger_backfill.py``, which imports rollout helpers
for offline genesis-ledger backfill tooling.
"""
from utils.memory_ingestion.config import DEFAULT_MEMORY_PIPELINE_CONFIG
from utils.memory_ingestion.models import MemoryPipelineInput, MemoryPipelineOutput
from utils.memory_ingestion.pipeline import CoreMemoryPipeline, MemoryModelClient, StubMemoryModelClient
__all__ = [
"CoreMemoryPipeline",
"DEFAULT_MEMORY_PIPELINE_CONFIG",
"MemoryModelClient",
"MemoryPipelineInput",
"MemoryPipelineOutput",
"StubMemoryModelClient",
]