* [refactor]Reconstruct episodic memory * [refactor]Reconstructing explicit memory * [refactor]Reconstruct episodic memory * [refactor]Reconstructing explicit memory * [changes]Based on the improvement of AI review * [changes]Modify the routing * [changes]Uniform routing format * [fix]Fix the failure in parsing the timestamp. * [refactor]Reconstruct episodic memory * [refactor]Reconstructing explicit memory * [changes]Based on the improvement of AI review * [changes]Modify the routing * [changes]Uniform routing format * [fix]Fix the failure in parsing the timestamp. * [deleted]Delete migration files * [refactor]Reconstruct episodic memory * [refactor]Reconstructing explicit memory * [changes]Based on the improvement of AI review * [changes]Modify the routing * [changes]Uniform routing format * [fix]Fix the failure in parsing the timestamp. * [deleted]Delete migration files * feat: add database migration 9ab9b6393f32_20261511
16 lines
494 B
Python
16 lines
494 B
Python
"""
|
||
显性记忆的请求和响应模型
|
||
"""
|
||
from pydantic import BaseModel, Field
|
||
|
||
class ExplicitMemoryOverviewRequest(BaseModel):
|
||
"""显性记忆总览查询请求"""
|
||
|
||
end_user_id: str = Field(..., description="终端用户ID")
|
||
|
||
class ExplicitMemoryDetailsRequest(BaseModel):
|
||
"""显性记忆详情查询请求"""
|
||
|
||
end_user_id: str = Field(..., description="终端用户ID")
|
||
memory_id: str = Field(..., description="记忆ID(情景记忆或语义记忆的ID)")
|