@langchain/google-gauth 2.0.3 → 2.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @langchain/google-gauth
2
2
 
3
+ ## 2.0.4
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies []:
8
+ - @langchain/google-common@2.0.4
9
+
3
10
  ## 2.0.3
4
11
 
5
12
  ### Patch Changes
@@ -11,6 +11,7 @@ interface ChatGoogleInput extends ChatGoogleBaseInput<GoogleAuthOptions> {}
11
11
  * Integration with a Google chat model.
12
12
  */
13
13
  declare class ChatGoogle extends ChatGoogleBase<GoogleAuthOptions> implements ChatGoogleInput {
14
+ // Used for tracing, replace with the same name as your class
14
15
  static lc_name(): string;
15
16
  constructor(fields?: ChatGoogleInput);
16
17
  buildAbstractedClient(fields: GoogleBaseLLMInput<GoogleAuthOptions> | undefined): GoogleAbstractedClient;
@@ -11,6 +11,7 @@ interface ChatGoogleInput extends ChatGoogleBaseInput<GoogleAuthOptions> {}
11
11
  * Integration with a Google chat model.
12
12
  */
13
13
  declare class ChatGoogle extends ChatGoogleBase<GoogleAuthOptions> implements ChatGoogleInput {
14
+ // Used for tracing, replace with the same name as your class
14
15
  static lc_name(): string;
15
16
  constructor(fields?: ChatGoogleInput);
16
17
  buildAbstractedClient(fields: GoogleBaseLLMInput<GoogleAuthOptions> | undefined): GoogleAbstractedClient;
@@ -11,6 +11,7 @@ interface GoogleEmbeddingsInput extends BaseGoogleEmbeddingsParams<GoogleAuthOpt
11
11
  * Integration with an Google embeddings model.
12
12
  */
13
13
  declare class GoogleEmbeddings extends BaseGoogleEmbeddings<GoogleAuthOptions> implements GoogleEmbeddingsInput {
14
+ // Used for tracing, replace with the same name as your class
14
15
  static lc_name(): string;
15
16
  lc_serializable: boolean;
16
17
  constructor(fields: GoogleEmbeddingsInput);
@@ -11,6 +11,7 @@ interface GoogleEmbeddingsInput extends BaseGoogleEmbeddingsParams<GoogleAuthOpt
11
11
  * Integration with an Google embeddings model.
12
12
  */
13
13
  declare class GoogleEmbeddings extends BaseGoogleEmbeddings<GoogleAuthOptions> implements GoogleEmbeddingsInput {
14
+ // Used for tracing, replace with the same name as your class
14
15
  static lc_name(): string;
15
16
  lc_serializable: boolean;
16
17
  constructor(fields: GoogleEmbeddingsInput);
package/dist/llms.d.cts CHANGED
@@ -11,6 +11,7 @@ interface GoogleLLMInput extends GoogleBaseLLMInput<GoogleAuthOptions> {}
11
11
  * Integration with a Google LLM.
12
12
  */
13
13
  declare class GoogleLLM extends GoogleBaseLLM<GoogleAuthOptions> implements GoogleLLMInput {
14
+ // Used for tracing, replace with the same name as your class
14
15
  static lc_name(): string;
15
16
  lc_serializable: boolean;
16
17
  constructor(fields?: GoogleLLMInput);
package/dist/llms.d.ts CHANGED
@@ -11,6 +11,7 @@ interface GoogleLLMInput extends GoogleBaseLLMInput<GoogleAuthOptions> {}
11
11
  * Integration with a Google LLM.
12
12
  */
13
13
  declare class GoogleLLM extends GoogleBaseLLM<GoogleAuthOptions> implements GoogleLLMInput {
14
+ // Used for tracing, replace with the same name as your class
14
15
  static lc_name(): string;
15
16
  lc_serializable: boolean;
16
17
  constructor(fields?: GoogleLLMInput);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@langchain/google-gauth",
3
- "version": "2.0.3",
3
+ "version": "2.0.4",
4
4
  "description": "Google auth based authentication support for Google services",
5
5
  "author": "LangChain",
6
6
  "license": "MIT",
@@ -15,7 +15,7 @@
15
15
  "homepage": "https://github.com/langchain-ai/langchainjs/tree/main/libs/langchain-google-gauth/",
16
16
  "dependencies": {
17
17
  "google-auth-library": "^10.1.0",
18
- "@langchain/google-common": "2.0.3"
18
+ "@langchain/google-common": "2.0.4"
19
19
  },
20
20
  "devDependencies": {
21
21
  "@jest/globals": "^29.5.0",