diff --git a/app/__pycache__/__init__.cpython-310.pyc b/app/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000..292c3e2 Binary files /dev/null and b/app/__pycache__/__init__.cpython-310.pyc differ diff --git a/app/__pycache__/app.cpython-310.pyc b/app/__pycache__/app.cpython-310.pyc new file mode 100644 index 0000000..53be749 Binary files /dev/null and b/app/__pycache__/app.cpython-310.pyc differ diff --git a/app/__pycache__/bid_evaluator.cpython-310.pyc b/app/__pycache__/bid_evaluator.cpython-310.pyc new file mode 100644 index 0000000..07c905c Binary files /dev/null and b/app/__pycache__/bid_evaluator.cpython-310.pyc differ diff --git a/app/__pycache__/execution_monitor.cpython-310.pyc b/app/__pycache__/execution_monitor.cpython-310.pyc new file mode 100644 index 0000000..c320c2b Binary files /dev/null and b/app/__pycache__/execution_monitor.cpython-310.pyc differ diff --git a/app/__pycache__/llm_client.cpython-310.pyc b/app/__pycache__/llm_client.cpython-310.pyc new file mode 100644 index 0000000..5612434 Binary files /dev/null and b/app/__pycache__/llm_client.cpython-310.pyc differ diff --git a/app/__pycache__/models.cpython-310.pyc b/app/__pycache__/models.cpython-310.pyc new file mode 100644 index 0000000..c13322f Binary files /dev/null and b/app/__pycache__/models.cpython-310.pyc differ diff --git a/app/__pycache__/orchestrator.cpython-310.pyc b/app/__pycache__/orchestrator.cpython-310.pyc new file mode 100644 index 0000000..35cb556 Binary files /dev/null and b/app/__pycache__/orchestrator.cpython-310.pyc differ diff --git a/app/__pycache__/task_board.cpython-310.pyc b/app/__pycache__/task_board.cpython-310.pyc new file mode 100644 index 0000000..f444313 Binary files /dev/null and b/app/__pycache__/task_board.cpython-310.pyc differ diff --git a/app/__pycache__/worker.cpython-310.pyc b/app/__pycache__/worker.cpython-310.pyc new file mode 100644 index 0000000..5628854 Binary files /dev/null and b/app/__pycache__/worker.cpython-310.pyc differ diff --git a/app/llm_client.py b/app/llm_client.py index 14e2c19..76aefff 100644 --- a/app/llm_client.py +++ b/app/llm_client.py @@ -5,7 +5,7 @@ LLM客户端 - 调用大模型API import requests import json import time -from typing import Dict, List, Optional +from typing import Dict, List, Optional, Any class LLMClient: