likes
comments
collection
share

Coze 太逆天了,直接对话任意开源项目

作者站长头像
站长
· 阅读数 29

本文将详细介绍如何利用 Coze 搭建 Bot 快速的对话大部分开源项目,且保证内容和提供的代码真实、实时、有效。

实现思路

传统的 "对话XXX" 的机器人实现方式要么使用调用 Google 搜索,要么直接将知识库嵌入。前者数据滞后、后者需要手动或定时更新。

那么不妨模拟我们人类,打开项目官网,直接一个 cmd+k 搜索我想要的内容就完事了。

观察开源项目的搜索,绝大多数都使用了一个叫 Algolia 的内容搜索引擎,那么能否让大模型:

  • 拆分用户诉求为关键字
  • 搜索文档
  • 返回总结和地址
  • 详细浏览,返回代码

就在刚刚,我建了一个 Coze 组织,名为 OpenCoze(已满) 欢迎加入,共同进步!

插件

Coze.com 上还没有现成的 algolia 插件,不过 Coze 插件实现很简单,只需:

  • 导入依赖
  • 定义输入输出 Schema
  • 编写并测试代码
  • 发布插件

Coze  太逆天了,直接对话任意开源项目

依赖

直接使用 Algolia 官方的SDK

输入输出 Schema

这里的输入结构为了使 bot 更通用,定义了 appId 和appKey,你可以直接写死。

因为 Coze 不支持动态 Schema ,所以输出的 hits 同样为了更通用,使用了 String 类型,稍后需要在代码里将其手动转换为 String

编写并测试代码

核心代码简单的很,别忘了给可选项添加默认值就好

export async function handler({ input, logger }: Args<Input>): Promise<Output> {
  const { appId, apiKey, indexName, query = '' } = input
  const client = algoliasearch(appId, apiKey);
  const index = await client.initIndex(indexName)
  const result = await index.search(query)
  return {
    ...result,
    hits: JSON.stringify(result.hits)
  }
};

工作流

对于不同语言的用户,我们当然希望能直接用其母语查询对应人工翻译的文档(而不是只查询英文,并由GPT翻译,不如人工准确),所以我们需要搭建一个工作流来处理不同语言搜索不同的 appId 和 index

Coze  太逆天了,直接对话任意开源项目

此处演示了两种情况,当外部传递的语言使chinese时,我们调用官方中文文档内容,否则用英文文档,当然你也可以把其他语言也加上。

Bot

机器人最重要的就是提示词了

角色

# Character
- Author: OpenCoze
- Version: 1.2
- Description: You're a senior front-end engineer, serving as a document assistant for the open-source software Vue.js, helping users to utilize it more efficiently.
- Website: https://vuejs.org/

技能

将刚刚的工作流添加到 Skills 中,再添加一个 Browser 插件进去,编写一个搜索提示词, 拒绝闲聊,要求使用 language 变量作为语言输入,将用户输入拆分为关键字输入到query。

搜索技能

# Skills
## Efficient Search
- Identify if the user's input is casual banter. If so, politely communicate to the user that you are not equipped to engage in small talk.
- Extract the keywords from the user's query as the 'query' parameter for the search_vue_cn_document method.
- Use {{language}} as the 'language' parameter of the search_vue_cn_document function (lowercase, such as 'english' or 'chinese').

代码示例

## Code Example
In the event of the user asking specific questions, employ the browse function to access the URL, find the relevant code, and deliver it to the user.

约束条件

## Constraints
- Maintain consistency while in character.
- Avoid making unfounded or irrational statements.
- Always source verifiable information from the official Vue.js documentation.
- Uphold a professional demeanor in all interactions with the user.

测试

简单测试下,已经从官方查询了,并且也用了中文文档。

Coze  太逆天了,直接对话任意开源项目

发布

这个 bot 已经发布到 👉 对话 Vue 文档啦,快来试试吧!

Coze 的审核比较慢,如果你想提前看到源码,加入 OpenCoze(已满)组织就可以啦!

很抱歉,现在已经组织满员了(2小时),不过我拉了个群,如果你不嫌麻烦可以加我 sanhuaai ,我拉你

Coze  太逆天了,直接对话任意开源项目

现在已经有两个插件和 Bot 了!

转载自:https://juejin.cn/post/7386835462134284307
评论
请登录