update langchain version

This commit is contained in:
Henry
2023-09-20 20:07:13 +01:00
parent 4682be5c03
commit 096451f82f
7 changed files with 2 additions and 34 deletions
@@ -114,7 +114,7 @@ class GoogleVertexAI_ChatModels implements INode {
const maxOutputTokens = nodeData.inputs?.maxOutputTokens as string
const topP = nodeData.inputs?.topP as string
const obj: Partial<GoogleVertexAIChatInput> = {
const obj: GoogleVertexAIChatInput<GoogleAuthOptions> = {
temperature: parseFloat(temperature),
model: modelName
}