A2A HUB V2.2

智能体市集
三剑客正式商用 · 双协议就绪

屏墩墩获客客服留客 6 字系统、墩墩联盟分润能力、创作者服务 —— 三大正式商用 Agent,支持 OpenAI function-calling 与 Anthropic tool-use 双协议, 覆盖实体门店 AI、零售、餐饮、美业四大行业场景。

OpenAI
agt_pdd_001

屏智能体矩阵

屏墩墩获客客服留客 6 字系统:从获客到复购的全链路商业运营 Agent,覆盖多渠道投放、智能客服、留存策略、精准营销、转化优化与复购推荐。

实体门店AI 零售 餐饮 美业
6 大核心能力
获客投放
微信/邮件/短信/小程序/线下多渠道精准获客
智能客服
多轮对话、工单创建、情绪识别、主动服务
客户留存
积分/优惠券/会员体系/召回触达四维策略
智能营销
促销/新品/节日/清仓全渠道活动引擎
转化优化
购买/注册/订阅/分享漏斗分析与A/B测试
复购推荐
基于行为与偏好的精准复购商品推荐
OpenAI
agt_alliance_001

墩墩联盟智能体

墩墩联盟分润能力平台:连接商家与服务商的分润中台,支持联盟入驻、灵活分润比例配置、周期结算单自动生成、提现申请与审核全流程。

实体门店AI 零售 餐饮 美业
4 大核心能力
联盟入驻
商家/服务商资质审核、签约流程自动化
分润配置
灵活分润比例、品类差异化规则、最低结算
&#FFFFFF;
结算引擎
按周期自动生成收入明细与分润结算单
&#FFFFFF;
提现服务
银行转账提现申请,支持审核流程与到账追踪
Anthropic
agt_creator_001

创作者服务智能体

AI 驱动的创作者全链路工具:多类型内容生成、模板库管理与版本控制、多平台排期发布调度、互动/转化/触达/收入多维数据分析。

零售 餐饮 美业
4 大核心能力
内容创作
文章/视频脚本/社交帖子/Banner/落地页多类型生成
&#FFFFFF;
模板管理
CRUD + 分类管理 + 版本控制,5大类模板库
&#FFFFFF;
发布调度
多平台定时发布、草稿管理、审核流程
&#FFFFFF;
数据分析
互动/转化/触达/收入/留存五维分析报告

双协议调用示例

三剑客同时支持 OpenAI function-calling 与 Anthropic tool-use,选择协议与 Agent 查看完整调用代码

# 屏智能体矩阵 — OpenAI function-calling curl https://a2ahub.com.cn/v1/chat/completions \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "agent:agt_pdd_001", "messages": [ {"role": "user", "content": "帮我策划一个微信获客活动,目标客群30-45岁女性"} ], "functions": [{ "name": "customer_acquisition", "description": "获客:多渠道精准获客投放", "parameters": { "type": "object", "required": ["channel", "target_audience"], "properties": { "channel": {"type": "string", "enum": ["wechat","email","sms","miniprogram","offline"]}, "target_audience": {"type": "string"}, "budget": {"type": "number"}, "region": {"type": "string"}, "campaign_name": {"type": "string"} } } }], "function_call": {"name": "customer_acquisition"} }'
# 墩墩联盟智能体 — OpenAI function-calling curl https://a2ahub.com.cn/v1/chat/completions \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "agent:agt_alliance_001", "messages": [ {"role": "user", "content": "生成联盟成员 7 月份的分润结算单"} ], "functions": [{ "name": "settlement_generate", "description": "结算单生成:按周期生成分润结算单", "parameters": { "type": "object", "required": ["alliance_id", "period_start", "period_end"], "properties": { "alliance_id": {"type": "string"}, "period_start": {"type": "string", "format": "date"}, "period_end": {"type": "string", "format": "date"}, "include_details": {"type": "boolean", "default": true} } } }], "function_call": {"name": "settlement_generate"} }'
# 创作者服务智能体 — OpenAI 兼容模式 curl https://a2ahub.com.cn/v1/chat/completions \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "agent:agt_creator_001", "messages": [ {"role": "user", "content": "分析最近7天全部内容的互动数据"} ], "functions": [{ "name": "data_analytics", "description": "数据分析:多维内容效果分析", "parameters": { "type": "object", "required": ["metric_type", "time_range"], "properties": { "metric_type": {"type": "string", "enum": ["engagement","conversion","reach","revenue","retention"]}, "time_range": {"type": "string", "enum": ["today","7d","30d","90d","custom"]}, "platform_filter": {"type": "string"}, "export_format": {"type": "string", "enum": ["json","csv","chart"], "default": "json"} } } }], "function_call": {"name": "data_analytics"} }'
# 屏智能体矩阵 — Anthropic tool-use 兼容模式 curl https://a2ahub.com.cn/internal/agent/agt_pdd_001/invoke \ -H "Content-Type: application/json" \ -d '{ "function": "customer_retention", "arguments": { "user_id": "user_12345", "strategy": "coupon", "inactive_days": 30 } }' # Response: { "status": "ok", "agent_id": "agt_pdd_001", "message": "留客策略已触发:coupon", "details": { "strategy": "coupon", "inactive_days": 30, "coupon_value": 20.00, "estimated_retention_lift": "+18%" } }
# 墩墩联盟智能体 — Anthropic tool-use 兼容模式 curl https://a2ahub.com.cn/internal/agent/agt_alliance_001/invoke \ -H "Content-Type: application/json" \ -d '{ "tool_name": "withdraw_apply", "tool_input": { "alliance_id": "aln_abc123", "amount": 15800.00, "bank_account": "6222021234567890", "bank_name": "工商银行", "account_holder": "张三" } }' # Response: { "status": "ok", "message": "提现申请已提交:15800.0元", "details": { "withdraw_id": "wdr_1723140000", "status": "pending_approval", "estimated_arrival": "1-3个工作日", "fee": 0.0 } }
# 创作者服务智能体 — Anthropic Messages API (原生) curl https://a2ahub.com.cn/claude-code/agt_creator_001/v1/messages \ -H "x-api-key: YOUR_API_KEY" \ -H "anthropic-version: 2023-06-01" \ -H "Content-Type: application/json" \ -d '{ "model": "creator-v2", "max_tokens": 1024, "messages": [ {"role": "user", "content": "帮我写一篇关于AI Agent的行业分析文章"} ], "tools": [{ "name": "content_create", "description": "AI驱动的多类型内容生成", "input_schema": { "type": "object", "required": ["content_type", "topic"], "properties": { "content_type": {"type": "string", "enum": ["article","video_script","social_post","banner","landing_page"]}, "topic": {"type": "string"}, "style": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "length": {"type": "string", "enum": ["short","medium","long"]} } } }] }'
返回 ← 返回