销售与营销
2 工作流2 响应格式3 后端步骤
潜客筛选与跟进
为进站潜客打分、识别意向最强的客户,并草拟个性化跟进邮件,让潜客不再躺在收件箱里。
数据如何流转
请求会在你的后端与 AI 工作流之间自动流转。以下是请求经过的完整路径。
收到客户请求
AI 工作流
lead_qualification_workflow
为潜客打分并启动跟进流水线
后端事件
lead_captured
draft_follow_up 触发后启动 lead_follow_up_workflow
后端事件
follow_up_queued
AI 工作流
lead_follow_up_workflow
草拟个性化跟进邮件
客户收到回复
你会得到什么
工作流
lead_qualification_workflow
为潜客打分并启动跟进流水线
工作流
lead_follow_up_workflow
草拟个性化跟进邮件
响应格式
lead_qualification_response
潜客评分、意向与下一步动作
fit_scoreintentlead_categorynext_action
响应格式
lead_follow_up_response
发给潜客的个性化跟进邮件
email_subjectemail_bodysend_follow_up
详细规格
每个工作流的完整规格说明。以下所有内容都已写入下载的文件中,导入后仍可随时修改。
lead_qualification_workflow
为潜客打分并启动跟进流水线
模型与备用模型了解更多
openai · gpt-5.6-terra备用 1: anthropic · claude-haiku-4-5-20251001
主模型,以及在主模型不可用时自动启用的备用模型。
响应格式了解更多
lead_qualification_response返回结构化对象,而不是自由文本。
该工作流返回的结构化 JSON。字段由你定义,并由 ModelRiver 强制校验。
使用的客户数据了解更多
lead_namelead_emailcompanylead_message
你在每次请求中传入的字段,工作流会据此给出个性化回答。
记忆窗口了解更多
10 分钟
在此时间窗口内,相同请求会直接使用缓存结果,更快也更省钱。
自动化流水线了解更多
运行模式了解更多
生产模式
调用你已连接的 AI 提供商实时运行。
lead_follow_up_workflow
草拟个性化跟进邮件
如何使用
- 1
下载模板
文件是可移植的 JSON 包,方便分享,也易于阅读。
- 2
在 ModelRiver 中打开一个项目
登录后选择一个项目,并确保该模板用到的 AI 提供商已连接。你可以在「提供商」中完成连接。
- 3
导入模板
在项目中点击「导入」,粘贴或上传文件,确认预览后完成导入。所有内容以原子方式创建,不会覆盖任何已有数据。 导入与导出如何工作
模板文件
技术用户可以在下方查看原始模板文件。
查看完整模板 JSON
{
"version": 1,
"structures": [
{
"name": "lead_qualification_response",
"description": "潜客评分、意向与下一步动作",
"example": {
"fit_score": 82,
"intent": "ready_to_buy",
"lead_category": "high_value",
"next_action": "预约产品演示"
},
"schema": {
"type": "object",
"properties": {
"fit_score": {
"type": "number"
},
"intent": {
"type": "string",
"enum": [
"ready_to_buy",
"researching",
"not_interested",
"unknown"
]
},
"lead_category": {
"type": "string",
"enum": [
"high_value",
"medium",
"low"
]
},
"next_action": {
"type": "string"
}
},
"required": [
"fit_score",
"intent",
"lead_category",
"next_action"
],
"additionalProperties": false
}
},
{
"name": "lead_follow_up_response",
"description": "发给潜客的个性化跟进邮件",
"example": {
"email_subject": "关于你对 ModelRiver 的咨询",
"email_body": "你好 Alex,感谢你的来信,很乐意回答你的问题。",
"send_follow_up": true
},
"schema": {
"type": "object",
"properties": {
"email_subject": {
"type": "string"
},
"email_body": {
"type": "string"
},
"send_follow_up": {
"type": "boolean"
}
},
"required": [
"email_subject",
"email_body",
"send_follow_up"
],
"additionalProperties": false
}
}
],
"workflows": [
{
"name": "lead_qualification_workflow",
"description": "为潜客打分并启动跟进流水线",
"provider": "openai",
"model": "gpt-5.6-terra",
"backups": [
{
"provider": "anthropic",
"model": "claude-haiku-4-5-20251001"
}
],
"request_type": "chat",
"system_instructions": "根据匹配度与购买意向为进站潜客打 0 到 100 分。选择潜客类别,判断他们最想做什么,并给出销售团队的最佳下一步动作。",
"structure": "lead_qualification_response",
"customer_fields": [
"lead_name",
"lead_email",
"company",
"lead_message"
],
"test_mode": false,
"cache_window_seconds": 600,
"backend_pipeline": {
"enabled": true,
"events": [
{
"name": "lead_captured"
},
{
"name": "draft_follow_up",
"target_workflow": "lead_follow_up_workflow"
},
{
"name": "follow_up_queued"
}
]
}
},
{
"name": "lead_follow_up_workflow",
"description": "草拟个性化跟进邮件",
"provider": "openai",
"model": "gpt-5.6-terra",
"backups": [
{
"provider": "anthropic",
"model": "claude-haiku-4-5-20251001"
}
],
"request_type": "chat",
"system_instructions": "根据潜客的消息和公司信息撰写一封简短、个性化的跟进邮件。保持热情、具体、易于回复。",
"structure": "lead_follow_up_response",
"customer_fields": [
"lead_name",
"lead_email",
"company",
"lead_message"
],
"test_mode": false
}
]
}在找其他方案?
更多模板即将上线。在此之前,你可以在 ModelRiver 控制台中从零搭建自己的工作流。