Skip to content

Latest commit

 

History

History
44 lines (27 loc) · 965 Bytes

README.MD

File metadata and controls

44 lines (27 loc) · 965 Bytes

ChatLuna Adapters

ChatLuna 模型适配器项目。

项目结构

用法

Requester

const requester = new OpenAIRequester({
    apiKey: '',
    apiEndpoint: 'https://api.openai.com/v1'
})

const messages = [new HumanMessage('What is the capital of France?')]

const generation = await requester.completion({
   input: messages,
   model: 'gpt-3.5-turbo',
   maxTokens: 100
})

console.log(generation.message.content)

With Client (LangChain Model)

With Full Cordis Context (ChatLuna Platform Service, Requester Service)

致谢

感谢 LangChain 项目。本项目基于其进行二次封装。

最后感谢所有 ChatLuna 的贡献者和用户,没有你们的支持,ChatLuna 就不会继续向前发展。

许可证

使用 MIT 许可证发布。