fix(conversation): 离屏不丢回复、列表预热 WS 与非阻塞进入聊天
- 后端:文本/转写后 AI 生成改为独立任务,避免断连取消整轮;按需 TTS 等与 WS 改动 - 前端:RealtimeSession 重绑 UI 时恢复流式 buffer;列表 onPressIn/挂载预热、已有会话立即 push - 同步会话相关类型、i18n、测试与 env/资源等累计改动 Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -66,6 +66,11 @@ async def update_user_profile(
|
||||
current_user: User = Depends(get_current_user),
|
||||
service: UserService = Depends(get_user_service),
|
||||
):
|
||||
logger.info(
|
||||
"更新用户档案 user_id={} fields={}",
|
||||
current_user.id,
|
||||
sorted(body.model_fields_set),
|
||||
)
|
||||
return await service.update_profile(current_user.id, body)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user