@sumor/llm-connector

llm-connector

一个Sumor Cloud 工具。
更多文档

这是一个支持多个云服务提供商的 llm 连接器。

CI Test Coverage Audit

支持的LLM提供商

openAI

OpenAI 是一个研究实验室,由盈利实体 OpenAI LP 和非盈利实体 OpenAI Inc 组成。该公司旨在确保人工通用智能造福全人类。

qianWen

阿里巴巴钱闻是一个基于云的人工智能服务,提供各种人工智能功能,包括自然语言处理、计算机视觉和机器学习等。

安装

npm i @sumor/llm-connector --save

先决条件

Node.JS 版本

需要 Node.JS 版本 18.x 或更高

需要 Node.JS ES 模块

由于该包是用 ES 模块编写的,请更改您的 package.json 文件中的以下代码:

{
  "type": "module"
}

用法

聊天

import Model from '@sumor/llm-connector'

const model = new Model({
  type: 'openAI', // or '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', // or 'qianWen'
  key: '123'
})

const response = await model.image('dall-e-3', 'a painting of a flower vase', '1024x1024')
console.log(response)
// 输出: https://oaidalleapiprodscus.blob.core.windows.net/private/org-B7O45Q0iSubrkWb...

自定义 API 端点 URL

import Model from '@sumor/llm-connector'

const model = new Model({
  type: 'openAI',
  key: '123',
  endpoint: 'https://api.openai.com',
  chat: '/v1/chat',
  image: '/v1/image'
})