أداة Sumor Cloud.
مزيد من الوثائق
هذا هو موصل llm لمقدمي الخدمات السحابية المتعددين.
npm i @sumor/llm-connector --save
يتطلب إصدار Node.JS 16.x أو أعلى
نظرًا لأن هذه الحزمة مكتوبة بتنسيق ES module،
يرجى تغيير الشيفرة التالية في ملف 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)
// Output: { 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'
}
})