- 🚀 快速开始: 简单易用,只需一次学习,即可快速接入各种大模型。
- 💻 多模型集成: 集成了多种国内大模型,为用户提供丰富的对话模型选择,满足不同场景的需求。
- 💎 体验友好: 无需深入学习,只需提供必要的 API Key,剩下的交给 SDK 处理。
- 🔌 完美适配: 适配 OpenAI 的输入与输出格式,确保与其他模型的对话无缝对接。
要安装 @zhengxs/ai
,请运行以下命令:
$ pnpm install @zhengxs/ai
在这里获取你的 accessToken 值。
import { ErnieAI } from '@zhengxs/ai';
const client = new ErnieAI({
apiKey: 'My API Key', // defaults to process.env["EB_API_KEY"]
});
async function main() {
const chatCompletion = await client.chat.completions.create({
model: 'ernie-bot-turbo',
messages: [{ role: 'user', content: 'Say this is a test' }],
});
}
main();
使用与 OpenAI 的 SDK 完全一致。
import { ErnieAI } from '@zhengxs/ai';
const client = new ErnieAI();
async function main() {
const stream = await client.chat.completions.create({
model: 'ernie-bot-turbo',
messages: [{ role: 'user', content: 'Say this is a test' }],
stream: true,
});
for await (const chunk of stream) {
process.stdout.write(chunk.choices[0]?.delta?.content || '');
}
}
main();
可以使用 GitHub Codespaces 进行在线开发:
或者使用以下命令进行本地开发:
$ git clone https://github.com/zhengxs2018/ai.git
$ cd ai
$ pnpm install
$ pnpm dev
- 🤖 wechaty-plugin-assistant - 只需三步,就可以快速实现一个智能对话机器人。
我们非常欢迎各种形式的贡献。如果你对贡献代码感兴趣,可以查看我们的 GitHub Issues 大展身手,向我们展示你的奇思妙想。
Copyright © 2023 zhengxs2018.
This project is MIT licensed.