Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
afirstenberg committed Sep 11, 2024
1 parent fde3717 commit 3012736
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 10 deletions.
6 changes: 4 additions & 2 deletions libs/langchain-google-gauth/src/tests/chat_models.int.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
9 changes: 3 additions & 6 deletions libs/langchain-google-gauth/src/tests/media.int.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit 3012736

Please sign in to comment.