fix: LLMClient类型导入修复

This commit is contained in:
2026-04-12 01:55:34 +08:00
parent 05950a3c84
commit 4ab0ed0893
10 changed files with 1 additions and 1 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -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: