mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-28 17:01:00 +03:00
Chore/LC v0.3 (#3517)
* bump langchain version to 0.3, upgrades on all chat models * update all docs loader to have documents and text output options * fix pnpm lock file
This commit is contained in:
@@ -19,11 +19,11 @@ class ChatCerebras_ChatModels implements INode {
|
||||
constructor() {
|
||||
this.label = 'ChatCerebras'
|
||||
this.name = 'chatCerebras'
|
||||
this.version = 1.0
|
||||
this.version = 2.0
|
||||
this.type = 'ChatCerebras'
|
||||
this.icon = 'cerebras.png'
|
||||
this.category = 'Chat Models'
|
||||
this.description = 'Models available via Cerebras'
|
||||
this.description = 'Wrapper around Cerebras Inference API'
|
||||
this.baseClasses = [this.type, ...getBaseClasses(ChatOpenAI)]
|
||||
this.credential = {
|
||||
label: 'Connect Credential',
|
||||
@@ -53,6 +53,14 @@ class ChatCerebras_ChatModels implements INode {
|
||||
default: 0.9,
|
||||
optional: true
|
||||
},
|
||||
{
|
||||
label: 'Streaming',
|
||||
name: 'streaming',
|
||||
type: 'boolean',
|
||||
default: true,
|
||||
optional: true,
|
||||
additionalParams: true
|
||||
},
|
||||
{
|
||||
label: 'Max Tokens',
|
||||
name: 'maxTokens',
|
||||
|
||||
Reference in New Issue
Block a user