Spaces:
Running
Running
File size: 1,227 Bytes
dff25f7 | 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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | """
Memory 共享类型.
定义 Memory, SessionContext 等类型。
这些类型同时被 soulmem 和 evermemos provider 使用。
原模块 (memory_store.py, evermemos_client.py) 保持自己的定义不变,
后续迁移时从此处 import。
"""
from __future__ import annotations
from dataclasses import dataclass, field
from typing import Optional
@dataclass
class Memory:
"""A single memory entry (SoulMem)."""
memory_id: int = 0
user_id: str = ""
persona_id: str = ""
content: str = ""
category: str = "conversation" # conversation | fact | event | preference
importance: float = 0.5
source_turn: int = 0
created_at: float = 0.0
@dataclass
class SessionContext:
"""
EverMemOS session context (陈述记忆).
Loaded once at session start, contains relationship priors,
user profile, episode summaries, and foresight.
"""
user_id: str = ""
persona_id: str = ""
user_profile: str = ""
episode_summary: str = ""
foresight_text: str = ""
relationship_depth: float = 0.0
emotional_valence: float = 0.0
trust_level: float = 0.0
pending_foresight: float = 0.0
has_history: bool = False
raw_data: Optional[dict] = None
|