@sumor/llm-connector

llm-connector

Sumor Cloud 도구입니다.
더 많은 문서

이것은 여러 클라우드 제공업체를 위한 llm 커넥터입니다.

CI Test Coverage Audit

지원하는 클라우드 제공업체

OpenAI

Alibaba Qianwen

설치

npm i @sumor/llm-connector --save

전제조건

Node.JS 버전

Node.JS 버전 16.x 이상 필요

Node.JS ES 모듈 요구

이 패키지는 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?' }

사용자 정의 API 엔드포인트 URL

import Model from '@sumor/llm-connector'

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