阐述垂直领域Agent通过Domain-Encoded业务逻辑暴露为工具来实现真实价值,与通用AI的本质差异,并给出20个生产Agent的共享基础设施架构。
ChatGPT 能写诗,但它管不了你餐厅周五晚高峰的客流。
"通用 AI"和"能完成特定工作的 AI"之间的差距,才是真正价值所在。下面来解释为什么我们全力押注垂直 AI 智能体——以及 20 个生产级行业智能体的架构。
水平 AI 工具(Zapier AI、通用聊天机器人、"AI 全能"平台)有一个致命缺陷:什么都懂一点,什么都不精通。
当酒店经理问"优化下周末的价格"时,水平 AI 给你的答案是关于动态定价的泛泛之谈。而垂直 HotelOS 智能体会:
调取近 3 个周末的入住率数据
查询本地活动(会议、节日、体育赛事)
对比 Booking.com 上的竞品价格
综合成本基础和利润率目标
给出每个房型的具体报价并附上决策理由
这不是提示词工程。这是把领域编码的业务逻辑以工具形式暴露出来。
架构:一个框架,20 个大脑
Shared Infrastructure:
├── AI Provider Chain (Groq/Cerebras/SambaNova/Mistral)
├── Tool Dispatcher (30+ handlers)
├── Autonomy Gate (risk classification)
├── OpenAPI Connector (universal SaaS integration)
└── Communication Layer (WhatsApp, Web, API)
Per-Vertical Agent Definition:
├── System prompt (industry-specific personality + knowledge)
├── Tool whitelist (which tools this agent can use)
├── Business rules (what requires human approval)
├── Data schema (tables, relationships, KPIs)
└── Proactive behaviors (when to reach out unprompted)
智能体定义示例:DineOS(餐厅)
{
"id": "dineos",
"name": "DineOS Agent",
"vertical": "restaurant",
"tools": [
"create_reservation",
"check_availability",
"menu_analysis",
"staff_schedule",
"food_cost_calculator",
"daily_revenue_report",
"supplier_order"
],
"proactive_behaviors": [
{
"trigger": "reservation_count > capacity * 0.9",
"action": "alert_owner",
"message": "Tonight is 90%+ booked. Consider opening the patio."
},
{
"trigger": "ingredient_stock < reorder_point",
"action": "draft_supplier_order",
"requires_approval": true
}
],
"autonomy_rules": {
"low_risk": ["check_availability", "menu_analysis", "daily_revenue_report"],
"medium_risk": ["create_reservation", "staff_schedule"],
"high_risk": ["supplier_order", "pricing_change"]
}
}
为什么这比微调更好
你不需要每个垂直领域都微调一个模型。你需要的是:
正确的工具——配备 food_cost_calculator 的餐厅智能体,比背了 10000 道菜谱的模型有用得多
正确的护栏——不同垂直领域有不同的风险画像
正确的数据——在运行时注入业务特定的上下文(菜单、定价、库存),而不是训练时
这套方法意味着我们可以在几天内上线一个新的垂直领域,而不是几个月:
定义智能体(system prompt + 工具白名单 + 规则)→ 1 天
创建数据 schema(表 + 迁移)→ 1 天
接入主动行为 → 1 天
真实场景测试 → 2 天
跨垂直领域智能
真正的魔法:智能体之间互相通信。
Event: Large group booking (20 pax) at DineOS restaurant
→ DineOS notifies TravelOS: "20 guests arriving Saturday"
→ TravelOS checks hotel availability nearby
→ TravelOS offers group rate to the booking contact
→ AgencyOS logs the cross-sell opportunity
这是通过事件总线实现的:
eventBus.emit('large_booking', {
vertical: 'dineos',
guest_count: 20,
date: '2026-08-15',
contact: { name: '[REDACTED]', phone: '[REDACTED]' }
});
// TravelOS listener
eventBus.on('large_booking', async (event) => {
if (event.guest_count >= 10) {
const availability = await checkHotelAvailability(event.date);
if (availability.rooms >= event.guest_count / 2) {
await suggestGroupRate(event);
}
}
});
我们目前运行的智能体覆盖:餐厅(DineOS)、酒店(HotelOS)、房产(PropertyOS)、零售(RetailOS)、旅行社(TravelOS)、设施管理(FacilityOS)、工作室/健身房(StudioOS)、法律(LegalOS)、医疗(HealthOS)、教育(EduOS)、汽车(AutoOS)、房地产(RealEstateOS)、建筑(BuildOS)、物流(LogisticsOS)、农业(AgroOS)、美容/SPA(BeautyOS)、活动策划(EventOS)、金融(FinanceOS)、人力资源(HROS),以及一个通用智能体。
全部 21 个智能体定义均已开源:scala-agent-definitions(Apache-2.0)。
对于垂直 AI 智能体,衡量指标与聊天机器人完全不同:
当一家餐厅周五晚上离不开你的智能体时,流失率接近于零。这就是护城河。
平台:get-scala.com(Growth $97/月,Scale $197/月)
WhatsApp 智能体(开源):SARA on GitHub
智能体定义(开源):scala-agent-definitions
房地产可行性智能体(开源):LandIQ on GitHub
AI 的未来不是一个模型做所有事,而是专业智能体把一件事做到极致。欢迎关注了解更多垂直 AI 构建经验。