DeepSeek + 钉钉 = 最强 AI 客服组合(附教程)

2 阅读2分钟

DeepSeek + 钉钉 = 最强 AI 客服组合

DeepSeek 最近很火,今天教大家怎么接到钉钉里。

为什么是 DeepSeek?

对比DeepSeekGPT-4
价格¥0.001/千token¥0.21/千token
中文能力优秀优秀
API 延迟1-2 秒2-5 秒
国内访问需代理

结论:中文场景 + 成本敏感 → DeepSeek

效果展示

用户:订单 12345 发货了吗?
AI:您好!订单 12345 已于 3 月 12 日发货,
    物流单号:SF1234567890
    预计 3-15 送达。还有其他问题吗?

响应时间:3 秒 成本:¥0.01

部署教程

第一步:获取 DeepSeek API Key

  1. 访问 deepseek.com
  2. 注册账号
  3. 创建 API Key
  4. 充值 ¥10(可用很久)

第二步:安装 OpenClaw

curl -fsSL https://openclaw.ai/install.sh | bash
openclaw init

第三步:安装钉钉连接器

curl -fsSL https://raw.githubusercontent.com/yang1002378395-cmyk/dingtalk-connector-pro/main/install-pro.sh | bash

第四步:配置

编辑 ~/.openclaw/config.toml

[model]
provider = "deepseek"
api_key = "你的DeepSeek API Key"

[dingtalk]
app_key = "你的钉钉AppKey"
app_secret = "你的钉钉AppSecret"

第五步:启动

openclaw gateway start

完成!在钉钉群 @机器人 试试。

成本计算

假设每天 500 次对话,每次 1000 token:

  • 日成本:500 × 1000 × ¥0.001/1000 = ¥0.5
  • 月成本:¥15
  • 年成本:¥180

对比人工客服 ¥5000/月,节省 99.7%。

进阶配置

1. 设置提示词

nano ~/.openclaw/skills/dingtalk/prompt.md
你是专业的客服助手。回答问题时:
1. 友好、简洁、专业
2. 不知道的说"我帮您查一下"
3. 涉及退款/投诉转人工

2. 添加知识库

把 FAQ 放进 ~/.openclaw/knowledge/,AI 会自动学习。

3. 设置转人工

if "退款" in message or "投诉" in message:
    return "我帮您转人工客服..."

商业支持

服务价格
远程安装¥99
知识库配置¥199
定制开发¥999 起

GitHub: github.com/yang1002378…


有问题评论区见!