Merge pull request #141 from FlowiseAI/feature/LocalAI

Bugfix/Add BaseChatModel class to LocalAI
This commit is contained in:
Henry Heng
2023-05-21 12:07:57 +01:00
committed by GitHub
@@ -20,7 +20,7 @@ class ChatLocalAI_ChatModels implements INode {
this.icon = 'localai.png'
this.category = 'Chat Models'
this.description = 'Use local LLMs like llama.cpp, gpt4all using LocalAI'
this.baseClasses = [this.type, ...getBaseClasses(OpenAIChat)]
this.baseClasses = [this.type, 'BaseChatModel', ...getBaseClasses(OpenAIChat)]
this.inputs = [
{
label: 'Base Path',