Reconfiguration of the basic multi-agent architecture.

This commit is contained in:
戒酒的李白
2025-08-22 22:04:08 +08:00
parent bec01f8930
commit 7ae863a781
70 changed files with 6792 additions and 648 deletions
+26
View File
@@ -0,0 +1,26 @@
"""
工具函数模块
提供文本处理、JSON解析等辅助功能
"""
from .text_processing import (
clean_json_tags,
clean_markdown_tags,
remove_reasoning_from_output,
extract_clean_response,
update_state_with_search_results,
format_search_results_for_prompt
)
from .config import Config, load_config
__all__ = [
"clean_json_tags",
"clean_markdown_tags",
"remove_reasoning_from_output",
"extract_clean_response",
"update_state_with_search_results",
"format_search_results_for_prompt",
"Config",
"load_config"
]