@sumor/llm-connector

llm-connector

Sumor Cloud ツール。
より詳しいドキュメント

これは複数のクラウドプロバイダー用の llm コネクターです。

CI Test Coverage Audit

インストール

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',
  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'
  }
})