This commit is contained in:
2026-02-27 16:03:04 +08:00
commit 5aedf1665d
137 changed files with 17604 additions and 0 deletions

13
archive/test_import.py Normal file
View File

@@ -0,0 +1,13 @@
import traceback
try:
from pydantic_ai_agent import CustomerServiceAgent, CustomerMessage
print("✓ Agent 模块导入成功")
# 尝试初始化
agent = CustomerServiceAgent()
print("✓ Agent 初始化成功")
except Exception as e:
print(f"✗ 导入或初始化失败: {e}")
traceback.print_exc()