Merge remote-tracking branch 'refs/remotes/origin/develop'

# Conflicts:
#	app/core/config.py
#	app/service/chat_robot/script/service/CallQWen.py
This commit is contained in:
zchen
2025-09-02 20:08:54 +08:00
74 changed files with 5502 additions and 310 deletions

View File

@@ -90,7 +90,6 @@ def chat(post_data):
user_id = post_data.user_id
session_id = post_data.session_id
input_message = post_data.message
gender = post_data.gender
# final_outputs = agent_executor(
# {"input": input_message, "gender": gender},
@@ -98,7 +97,7 @@ def chat(post_data):
# session_key=f"buffer:{user_id}:{session_id}",
# )
final_outputs = CallQWen.call_with_messages(input_message, gender)
final_outputs = CallQWen.call_with_messages(input_message)
# api_response = {
# 'user_id': user_id,
# 'session_id': session_id,