mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -08:00
fix(Google Vertex Chat Model Node): Clean service account private key (#10770)
This commit is contained in:
parent
d14bb36300
commit
e6d84db899
|
@ -12,6 +12,7 @@ import {
|
|||
import { ChatVertexAI } from '@langchain/google-vertexai';
|
||||
import type { SafetySetting } from '@google/generative-ai';
|
||||
import { ProjectsClient } from '@google-cloud/resource-manager';
|
||||
import { formatPrivateKey } from 'n8n-nodes-base/dist/utils/utilities';
|
||||
import { getConnectionHintNoticeField } from '../../../utils/sharedFields';
|
||||
import { N8nLlmTracing } from '../N8nLlmTracing';
|
||||
import { additionalOptions } from '../gemini-common/additional-options';
|
||||
|
@ -97,11 +98,13 @@ export class LmChatGoogleVertex implements INodeType {
|
|||
const results: Array<{ name: string; value: string }> = [];
|
||||
|
||||
const credentials = await this.getCredentials('googleApi');
|
||||
const privateKey = formatPrivateKey(credentials.privateKey as string);
|
||||
const email = (credentials.email as string).trim();
|
||||
|
||||
const client = new ProjectsClient({
|
||||
credentials: {
|
||||
client_email: credentials.email as string,
|
||||
private_key: credentials.privateKey as string,
|
||||
client_email: email,
|
||||
private_key: privateKey,
|
||||
},
|
||||
});
|
||||
|
||||
|
@ -123,6 +126,8 @@ export class LmChatGoogleVertex implements INodeType {
|
|||
|
||||
async supplyData(this: IExecuteFunctions, itemIndex: number): Promise<SupplyData> {
|
||||
const credentials = await this.getCredentials('googleApi');
|
||||
const privateKey = formatPrivateKey(credentials.privateKey as string);
|
||||
const email = (credentials.email as string).trim();
|
||||
|
||||
const modelName = this.getNodeParameter('modelName', itemIndex) as string;
|
||||
|
||||
|
@ -153,8 +158,8 @@ export class LmChatGoogleVertex implements INodeType {
|
|||
authOptions: {
|
||||
projectId,
|
||||
credentials: {
|
||||
client_email: credentials.email as string,
|
||||
private_key: credentials.privateKey as string,
|
||||
client_email: email,
|
||||
private_key: privateKey,
|
||||
},
|
||||
},
|
||||
model: modelName,
|
||||
|
|
Loading…
Reference in a new issue