From ac45c66cc2e437e8bedf0bb308de2c211bd1616e Mon Sep 17 00:00:00 2001 From: zy123 <646228430@qq.com> Date: Sat, 15 Feb 2025 13:41:48 +0800 Subject: [PATCH] =?UTF-8?q?2.15=20=E6=8E=92=E6=9F=A5=E5=BC=80=E8=AF=84?= =?UTF-8?q?=E5=AE=9A=E6=A0=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- flask_app/general/llm/通义千问long.py | 1 - flask_app/routes/货物标解析main.py | 22 +++++++++++----------- 2 files changed, 11 insertions(+), 12 deletions(-) diff --git a/flask_app/general/llm/通义千问long.py b/flask_app/general/llm/通义千问long.py index 456ae57..cf81acb 100644 --- a/flask_app/general/llm/通义千问long.py +++ b/flask_app/general/llm/通义千问long.py @@ -52,7 +52,6 @@ def qianwen_long(file_id, user_query, max_retries=2, backoff_factor=1.0, need_ex - backoff_factor: 指数退避的基础等待时间(默认 1.0 秒) - need_extra: 是否需要返回额外数据(默认 False) """ - logger.info("zy123") client = OpenAI( api_key=os.getenv("DASHSCOPE_API_KEY"), base_url="https://dashscope.aliyuncs.com/compatible-mode/v1" diff --git a/flask_app/routes/货物标解析main.py b/flask_app/routes/货物标解析main.py index 9404add..2f99651 100644 --- a/flask_app/routes/货物标解析main.py +++ b/flask_app/routes/货物标解析main.py @@ -228,11 +228,11 @@ def goods_bid_main(output_folder, file_path, file_type, unique_id): with concurrent.futures.ThreadPoolExecutor() as executor: # 立即启动不依赖 knowledge_name 和 index 的任务 futures = { - 'evaluation_standards': executor.submit(fetch_evaluation_standards,processed_data['invalid_deleted_docx'], #技术评分 商务评分 - processed_data['evaluation_method_path'],logger), - - 'invalid_requirements': executor.submit(fetch_invalid_requirements, processed_data['invalid_added_docx'], #无效标与废标项 - output_folder,logger), + # 'evaluation_standards': executor.submit(fetch_evaluation_standards,processed_data['invalid_deleted_docx'], #技术评分 商务评分 + # processed_data['evaluation_method_path'],logger), + # + # 'invalid_requirements': executor.submit(fetch_invalid_requirements, processed_data['invalid_added_docx'], #无效标与废标项 + # output_folder,logger), 'bidding_documents_requirements': executor.submit(fetch_bidding_documents_requirements,processed_data['invalid_deleted_docx'],processed_data['merged_baseinfo_path'], processed_data['clause_path'],logger), #投标文件要求 @@ -240,12 +240,12 @@ def goods_bid_main(output_folder, file_path, file_type, unique_id): 'opening_bid': executor.submit(fetch_bid_opening, processed_data['invalid_deleted_docx'],processed_data['merged_baseinfo_path'], processed_data['clause_path'],logger), #开评定标流程 - 'base_info': executor.submit(fetch_project_basic_info, processed_data['invalid_deleted_docx'],processed_data['merged_baseinfo_path'], #基础信息 - processed_data['procurement_path'],processed_data['clause_path'],logger), - - 'qualification_review': executor.submit(fetch_qualification_review, processed_data['invalid_deleted_docx'], #资格审查 - processed_data['qualification_path'], - processed_data['notice_path'],logger), + # 'base_info': executor.submit(fetch_project_basic_info, processed_data['invalid_deleted_docx'],processed_data['merged_baseinfo_path'], #基础信息 + # processed_data['procurement_path'],processed_data['clause_path'],logger), + # + # 'qualification_review': executor.submit(fetch_qualification_review, processed_data['invalid_deleted_docx'], #资格审查 + # processed_data['qualification_path'], + # processed_data['notice_path'],logger), } # 提前处理这些不依赖的任务,按完成顺序返回