diff --git a/libs/langchain-google-gauth/src/tests/chat_models.int.test.ts b/libs/langchain-google-gauth/src/tests/chat_models.int.test.ts index bc4bc17e7172..5baa6aaf1973 100644 --- a/libs/langchain-google-gauth/src/tests/chat_models.int.test.ts +++ b/libs/langchain-google-gauth/src/tests/chat_models.int.test.ts @@ -14,8 +14,10 @@ import { ToolMessage, } from "@langchain/core/messages"; import { - BackedBlobStore, MediaBlob, - MediaManager, ReadThroughBlobStore, + BackedBlobStore, + MediaBlob, + MediaManager, + ReadThroughBlobStore, SimpleWebBlobStore, } from "@langchain/google-common/experimental/utils/media_core"; import { GoogleCloudStorageUri } from "@langchain/google-common/experimental/media"; diff --git a/libs/langchain-google-gauth/src/tests/media.int.test.ts b/libs/langchain-google-gauth/src/tests/media.int.test.ts index 88ea362dd004..665dd4a75761 100644 --- a/libs/langchain-google-gauth/src/tests/media.int.test.ts +++ b/libs/langchain-google-gauth/src/tests/media.int.test.ts @@ -69,12 +69,9 @@ describe("GAuth GCS store", () => { const uriPrefix = new GoogleCloudStorageUri("gs://test-langchainjs/"); const uri = `gs://test-langchainjs/image/test-${Date.now()}-nm`; - const blob = await MediaBlob.fromBlob( - data, - { - path: uri, - } - ) + const blob = await MediaBlob.fromBlob(data, { + path: uri, + }); const config: BlobStoreGoogleCloudStorageParams = { uriPrefix, }; diff --git a/libs/langchain-google-vertexai/src/tests/chat_models.int.test.ts b/libs/langchain-google-vertexai/src/tests/chat_models.int.test.ts index 3607f41b3cc7..8eeed770fee2 100644 --- a/libs/langchain-google-vertexai/src/tests/chat_models.int.test.ts +++ b/libs/langchain-google-vertexai/src/tests/chat_models.int.test.ts @@ -14,14 +14,18 @@ import { SystemMessage, ToolMessage, } from "@langchain/core/messages"; -import {BlobStoreGoogleCloudStorage, ChatGoogle} from "@langchain/google-gauth"; +import { + BlobStoreGoogleCloudStorage, + ChatGoogle, +} from "@langchain/google-gauth"; import { tool } from "@langchain/core/tools"; import { z } from "zod"; import { concat } from "@langchain/core/utils/stream"; import { BackedBlobStore, MediaBlob, - MediaManager, ReadThroughBlobStore, + MediaManager, + ReadThroughBlobStore, SimpleWebBlobStore, } from "@langchain/google-common/experimental/utils/media_core"; import { GoogleCloudStorageUri } from "@langchain/google-common/experimental/media";