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