From b2886542ced7fef51bab054d05e918ad28d46ad9 Mon Sep 17 00:00:00 2001 From: Pavel Jbanov Date: Thu, 9 May 2024 10:42:54 -0400 Subject: [PATCH] Fixed more eval imports --- js/plugins/vertexai/src/evaluator_factory.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/js/plugins/vertexai/src/evaluator_factory.ts b/js/plugins/vertexai/src/evaluator_factory.ts index 6908c64de..ef8351c9e 100644 --- a/js/plugins/vertexai/src/evaluator_factory.ts +++ b/js/plugins/vertexai/src/evaluator_factory.ts @@ -18,13 +18,12 @@ import { BaseDataPoint, defineEvaluator, Score } from '@genkit-ai/ai/evaluator'; import { Action, GENKIT_CLIENT_HEADER } from '@genkit-ai/core'; import { runInNewSpan } from '@genkit-ai/core/tracing'; import { GoogleAuth } from 'google-auth-library'; -import { JSONClient } from 'google-auth-library/build/src/auth/googleauth'; import z from 'zod'; import { VertexAIEvaluationMetricType } from './evaluation'; export class EvaluatorFactory { constructor( - private readonly auth: GoogleAuth, + private readonly auth: GoogleAuth, private readonly location: string, private readonly projectId: string ) {}