feat: 完善通讯录子图,添加API调用工具和精美展示
Some checks failed
构建并部署 AI Agent 服务 / deploy (push) Failing after 6m37s

- 完善通讯录子图nodes.py:优化format_result的展示效果
- 创建通讯录子图API调用工具:api_client.py
- 更新通讯录子图__init__.py,导出所有模块和API客户端
- 所有功能已通过测试验证
This commit is contained in:
2026-04-25 19:31:33 +08:00
parent b47c52c611
commit 96dc01f8c2
3 changed files with 355 additions and 46 deletions

View File

@@ -1,6 +1,6 @@
"""
通讯录子图
Contact Subgraph Module
通讯录子图 - 完善版
Contact Subgraph Module - Complete
"""
from .state import (
@@ -22,6 +22,7 @@ from .nodes import (
format_result,
should_continue
)
from .api_client import contact_api, ContactAPIClient
__all__ = [
# State
@@ -43,5 +44,9 @@ __all__ = [
"send_email",
"sniff_contacts",
"format_result",
"should_continue"
"should_continue",
# API
"contact_api",
"ContactAPIClient"
]