다중 클라우드 제공업체를 위한 llm 커넥터입니다.
OpenAI는 이윤 추구 OpenAI LP 및 비영리 OpenAI Inc.로 구성된 연구소입니다. 회사는 인공 일반 지능이 모든 인류에 이익을 주도록 하는 것을 목표로 합니다.
알리바바 천문은 자연어 처리, 컴퓨터 비전 및 기계 학습을 포함한 다양한 AI 기능을 제공하는 클라우드 기반 AI 서비스입니다.
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', // 또는 '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...
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'
})