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
commit 2ffd26b147
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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',