mirror of https://github.com/FlowiseAI/Flowise.git
Fix incorrect variable name for maxOutputTokens in GoogleVertexAI_LLMs class
parent
45069e10f2
commit
16c008dba7
|
|
@ -86,7 +86,7 @@ class GoogleVertexAI_LLMs implements INode {
|
|||
async init(nodeData: INodeData, _: string): Promise<any> {
|
||||
const temperature = nodeData.inputs?.temperature as string
|
||||
const model = nodeData.inputs?.modelName as string
|
||||
const maxOutputTokens = nodeData.inputs?.maxTokens as string
|
||||
const maxOutputTokens = nodeData.inputs?.maxOutputTokens as string
|
||||
const topP = nodeData.inputs?.topP as string
|
||||
|
||||
const obj: Partial<GoogleVertexAITextInput> = {
|
||||
|
|
|
|||
Loading…
Reference in New Issue