Sumor Cloud ツール。
詳細ドキュメント
これは複数のクラウドプロバイダー向けの llm コネクターです。
npm i @sumor/llm-connector --save
Node.JS バージョン 16.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: {
chat: 'https://api.openai.com/v1/chat'
}
})