一个Sumor Cloud工具。
更多文档
这是一个用于多个云提供商的llm 连接器。
OpenAI是一个由盈利性OpenAI LP和非盈利性OpenAI Inc组成的研究实验室。该公司旨在确保人工通用智能造福全人类。
阿里巴巴千问是一种基于云的人工智能服务,提供各种人工智能功能,包括自然语言处理、计算机视觉和机器学习。
npm i @sumor/llm-connector --save
需要Node.JS版本18.x或以上
由于这个包是用ES模块写的,请在您的package.json
文件中更改以下代码:
{
"type": "module"
}
import Model from '@sumor/llm-connector'
const model = new Model({
type: 'openAI', // 或 'qianWen'
key: '123'
})
const response = await model.chat('gpt-3.5-turbo', [
{
role: 'system',
content: 'You are a helpful assistant.'
},
{
role: 'user',
content: 'Hello'
}
])
console.log(response)
// 输出: { role: 'assistant', content: 'Hello, how can I help you today?' }
import Model from '@sumor/llm-connector'
const model = new Model({
type: 'openAI',
key: '123',
endpoint: 'https://api.openai.com',
chat: '/v1/chat'
})