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