19 lines
364 B
Python
19 lines
364 B
Python
"""
|
|
Intake module - short-term memory summarization.
|
|
|
|
Runs inside the Cortex container as a pure Python module.
|
|
No standalone API server - called internally by Cortex.
|
|
"""
|
|
|
|
from .intake import (
|
|
SESSIONS,
|
|
add_exchange_internal,
|
|
summarize_context,
|
|
)
|
|
|
|
__all__ = [
|
|
"SESSIONS",
|
|
"add_exchange_internal",
|
|
"summarize_context",
|
|
]
|