The forum recording function has been initially completed.

This commit is contained in:
戒酒的李白
2025-08-24 22:49:45 +08:00
parent 04de3410af
commit f65387f951
12 changed files with 408 additions and 15 deletions
+2 -2
View File
@@ -93,7 +93,7 @@ class FirstSearchNode(BaseNode):
cleaned_output = clean_json_tags(cleaned_output)
# 记录清理后的输出用于调试
self.log_info(f"清理后的输出: {cleaned_output[:200]}...")
self.log_info(f"清理后的输出: {cleaned_output}")
# 解析JSON
try:
@@ -228,7 +228,7 @@ class ReflectionNode(BaseNode):
cleaned_output = clean_json_tags(cleaned_output)
# 记录清理后的输出用于调试
self.log_info(f"清理后的输出: {cleaned_output[:200]}...")
self.log_info(f"清理后的输出: {cleaned_output}")
# 解析JSON
try: