Files
life-echo/api/app/features/memory/schemas.py

11 lines
298 B
Python
Raw Normal View History

from pydantic import BaseModel
class EvidenceBundle(BaseModel):
"""MemoryService 产出的检索结果,供 conversation/memoir 消费。"""
relevant_chunks: list[dict] = []
relevant_summaries: list[dict] = []
relevant_facts: list[dict] = []
timeline_hints: list[dict] = []