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
@@ -97,7 +97,7 @@ class FirstSummaryNode(StateMutationNode):
cleaned_output = clean_json_tags(cleaned_output)
# 记录清理后的输出用于调试
self.log_info(f"清理后的输出: {cleaned_output[:200]}...")
self.log_info(f"清理后的输出: {cleaned_output}")
# 解析JSON
try:
@@ -243,7 +243,7 @@ class ReflectionSummaryNode(StateMutationNode):
cleaned_output = clean_json_tags(cleaned_output)
# 记录清理后的输出用于调试
self.log_info(f"清理后的输出: {cleaned_output[:200]}...")
self.log_info(f"清理后的输出: {cleaned_output}")
# 解析JSON
try: