增加环绕侦察场景适配

This commit is contained in:
2026-01-08 15:44:38 +08:00
parent 3eba1f962b
commit 10c5bb5a8a
5441 changed files with 40219 additions and 379695 deletions

View File

@@ -11,6 +11,7 @@ sys.path.append(os.path.dirname(os.path.abspath(__file__)))
from modules.interactive_test import run_interactive_test
from modules.batch_runner import run_batch_test
from modules.json_visualizer import run_json_visualization
def clear_screen():
os.system('cls' if os.name == 'nt' else 'clear')
@@ -82,10 +83,11 @@ def main():
print(" - 读取指令文件,支持多轮压力测试,生成统计报告")
print("3. 上传任务到无人机 (Drone Uploader)")
print("4. LLM 服务连通性测试 (LLM Tester)")
print("5. JSON 文件可视化 (Visualize JSON File)")
print("0. 退出")
print("-" * 60)
choice = input("请输入选项 [0-4]: ").strip()
choice = input("请输入选项 [0-5]: ").strip()
if choice == '1':
try:
@@ -106,6 +108,9 @@ def main():
elif choice == '4':
run_legacy_module("llm_tester.py")
elif choice == '5':
run_json_visualization()
elif choice == '0':
print("\n👋 再见!")