用user_id save

This commit is contained in:
CakeCN
2025-12-09 22:03:55 +08:00
parent 9b131dfc94
commit ed6075a89c
2 changed files with 9 additions and 11 deletions

View File

@@ -86,7 +86,7 @@ class AgentNamespace(Namespace):
chatmanager.function_manager.add_function(next_chapter, {'user_uuid': user_uuid})
if not chatmanager.restart:# 尝试加载用户学习进度
progress = load_learning_progress(user_uuid, course_id, chapter_name, lesson_name)
progress = load_learning_progress(user_id, course_id, chapter_name, lesson_name)
need_skip_chapters = 0
if progress:
@@ -243,8 +243,8 @@ class AgentNamespace(Namespace):
# 调用保存学习进度功能
chatmanager = user_uuid2chatmanager.get(uuid)
if chatmanager:
save_result = save_learning_progress(uuid, chatmanager, user_id)
print(f"保存学习进度结果: {save_result}, user_uuid={uuid}")
save_result = save_learning_progress(chatmanager, user_id)
print(f"保存学习进度结果: {save_result}")
except Exception as e:
print(f"保存学习进度时发生异常: {str(e)}")