@langchain/google-gauth 0.0.24 → 0.0.25

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.
@@ -4,7 +4,7 @@ exports.ChatGoogle = void 0;
4
4
  const google_common_1 = require("@langchain/google-common");
5
5
  const auth_js_1 = require("./auth.cjs");
6
6
  /**
7
- * Integration with a chat model.
7
+ * Integration with a Google chat model.
8
8
  */
9
9
  class ChatGoogle extends google_common_1.ChatGoogleBase {
10
10
  // Used for tracing, replace with the same name as your class
@@ -6,7 +6,7 @@ import { GoogleAuthOptions } from "google-auth-library";
6
6
  export interface ChatGoogleInput extends ChatGoogleBaseInput<GoogleAuthOptions> {
7
7
  }
8
8
  /**
9
- * Integration with a chat model.
9
+ * Integration with a Google chat model.
10
10
  */
11
11
  export declare class ChatGoogle extends ChatGoogleBase<GoogleAuthOptions> implements ChatGoogleInput {
12
12
  static lc_name(): string;
@@ -1,7 +1,7 @@
1
1
  import { ChatGoogleBase, } from "@langchain/google-common";
2
2
  import { GAuthClient } from "./auth.js";
3
3
  /**
4
- * Integration with a chat model.
4
+ * Integration with a Google chat model.
5
5
  */
6
6
  export class ChatGoogle extends ChatGoogleBase {
7
7
  // Used for tracing, replace with the same name as your class
@@ -4,7 +4,7 @@ exports.GoogleEmbeddings = void 0;
4
4
  const google_common_1 = require("@langchain/google-common");
5
5
  const auth_js_1 = require("./auth.cjs");
6
6
  /**
7
- * Integration with an LLM.
7
+ * Integration with an Google embeddings model.
8
8
  */
9
9
  class GoogleEmbeddings extends google_common_1.BaseGoogleEmbeddings {
10
10
  // Used for tracing, replace with the same name as your class
@@ -6,7 +6,7 @@ import { GoogleAuthOptions } from "google-auth-library";
6
6
  export interface GoogleEmbeddingsInput extends BaseGoogleEmbeddingsParams<GoogleAuthOptions> {
7
7
  }
8
8
  /**
9
- * Integration with an LLM.
9
+ * Integration with an Google embeddings model.
10
10
  */
11
11
  export declare class GoogleEmbeddings extends BaseGoogleEmbeddings<GoogleAuthOptions> implements GoogleEmbeddingsInput {
12
12
  static lc_name(): string;
@@ -1,7 +1,7 @@
1
1
  import { BaseGoogleEmbeddings, } from "@langchain/google-common";
2
2
  import { GAuthClient } from "./auth.js";
3
3
  /**
4
- * Integration with an LLM.
4
+ * Integration with an Google embeddings model.
5
5
  */
6
6
  export class GoogleEmbeddings extends BaseGoogleEmbeddings {
7
7
  // Used for tracing, replace with the same name as your class
package/dist/llms.cjs CHANGED
@@ -4,7 +4,7 @@ exports.GoogleLLM = void 0;
4
4
  const google_common_1 = require("@langchain/google-common");
5
5
  const auth_js_1 = require("./auth.cjs");
6
6
  /**
7
- * Integration with an LLM.
7
+ * Integration with a Google LLM.
8
8
  */
9
9
  class GoogleLLM extends google_common_1.GoogleBaseLLM {
10
10
  // Used for tracing, replace with the same name as your class
package/dist/llms.d.ts CHANGED
@@ -6,7 +6,7 @@ import { GoogleAuthOptions } from "google-auth-library";
6
6
  export interface GoogleLLMInput extends GoogleBaseLLMInput<GoogleAuthOptions> {
7
7
  }
8
8
  /**
9
- * Integration with an LLM.
9
+ * Integration with a Google LLM.
10
10
  */
11
11
  export declare class GoogleLLM extends GoogleBaseLLM<GoogleAuthOptions> implements GoogleLLMInput {
12
12
  static lc_name(): string;
package/dist/llms.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import { GoogleBaseLLM, } from "@langchain/google-common";
2
2
  import { GAuthClient } from "./auth.js";
3
3
  /**
4
- * Integration with an LLM.
4
+ * Integration with a Google LLM.
5
5
  */
6
6
  export class GoogleLLM extends GoogleBaseLLM {
7
7
  // Used for tracing, replace with the same name as your class
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@langchain/google-gauth",
3
- "version": "0.0.24",
3
+ "version": "0.0.25",
4
4
  "description": "Google auth based authentication support for Google services",
5
5
  "type": "module",
6
6
  "engines": {
@@ -36,7 +36,7 @@
36
36
  "license": "MIT",
37
37
  "dependencies": {
38
38
  "@langchain/core": ">=0.2.21 <0.3.0",
39
- "@langchain/google-common": "~0.0.24",
39
+ "@langchain/google-common": "~0.0.25",
40
40
  "google-auth-library": "^8.9.0"
41
41
  },
42
42
  "devDependencies": {