chore/ 删除无用文件

This commit is contained in:
Kevin
2026-03-19 14:36:14 +08:00
parent 2f60858c9c
commit c6e07ce5ca
135 changed files with 2111 additions and 4510 deletions

View File

@@ -2,6 +2,7 @@
MemoryService — conversation / memoir 的统一门面。
一期先实现基础接口签名,具体逻辑后续补充。
"""
from sqlalchemy.ext.asyncio import AsyncSession
@@ -9,7 +10,9 @@ class MemoryService:
def __init__(self, db: AsyncSession):
self._db = db
async def ingest_transcript(self, user_id: str, conversation_id: str, transcript: str) -> str:
async def ingest_transcript(
self, user_id: str, conversation_id: str, transcript: str
) -> str:
"""Ingest conversation transcript into memory. Returns source_id."""
raise NotImplementedError("Phase 2+ implementation")