graphlit-client 1.0.20250127001 → 1.0.20250129001

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.
@@ -4099,7 +4099,9 @@ export declare enum GoogleModels {
4099
4099
  /** Gemini 2.0 Flash (Experimental) */
4100
4100
  Gemini_2_0FlashExperimental = "GEMINI_2_0_FLASH_EXPERIMENTAL",
4101
4101
  /** Gemini 2.0 Flash Thinking (Experimental) */
4102
- Gemini_2_0FlashThinkingExperimental = "GEMINI_2_0_FLASH_THINKING_EXPERIMENTAL"
4102
+ Gemini_2_0FlashThinkingExperimental = "GEMINI_2_0_FLASH_THINKING_EXPERIMENTAL",
4103
+ /** Gemini 2.0 Pro (Experimental) */
4104
+ Gemini_2_0ProExperimental = "GEMINI_2_0_PRO_EXPERIMENTAL"
4103
4105
  }
4104
4106
  /** Represents a knowledge graph. */
4105
4107
  export type Graph = {
@@ -4230,6 +4232,8 @@ export type GroqModelPropertiesUpdateInput = {
4230
4232
  export declare enum GroqModels {
4231
4233
  /** Developer-specified model */
4232
4234
  Custom = "CUSTOM",
4235
+ /** Deepseek R1 Distill Llama 70b Preview */
4236
+ DeepseekR1Llama_70BPreview = "DEEPSEEK_R1_LLAMA_70B_PREVIEW",
4233
4237
  /** LLaMA 3.1 8b */
4234
4238
  Llama_3_1_8B = "LLAMA_3_1_8B",
4235
4239
  /** LLaMA 3.2 1b Preview */
@@ -812,6 +812,8 @@ var GoogleModels;
812
812
  GoogleModels["Gemini_2_0FlashExperimental"] = "GEMINI_2_0_FLASH_EXPERIMENTAL";
813
813
  /** Gemini 2.0 Flash Thinking (Experimental) */
814
814
  GoogleModels["Gemini_2_0FlashThinkingExperimental"] = "GEMINI_2_0_FLASH_THINKING_EXPERIMENTAL";
815
+ /** Gemini 2.0 Pro (Experimental) */
816
+ GoogleModels["Gemini_2_0ProExperimental"] = "GEMINI_2_0_PRO_EXPERIMENTAL";
815
817
  })(GoogleModels || (exports.GoogleModels = GoogleModels = {}));
816
818
  /** GraphRAG strategies */
817
819
  var GraphStrategyTypes;
@@ -828,6 +830,8 @@ var GroqModels;
828
830
  (function (GroqModels) {
829
831
  /** Developer-specified model */
830
832
  GroqModels["Custom"] = "CUSTOM";
833
+ /** Deepseek R1 Distill Llama 70b Preview */
834
+ GroqModels["DeepseekR1Llama_70BPreview"] = "DEEPSEEK_R1_LLAMA_70B_PREVIEW";
831
835
  /** LLaMA 3.1 8b */
832
836
  GroqModels["Llama_3_1_8B"] = "LLAMA_3_1_8B";
833
837
  /** LLaMA 3.2 1b Preview */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20250127001",
3
+ "version": "1.0.20250129001",
4
4
  "description": "Graphlit API TypeScript Client",
5
5
  "main": "dist/client.js",
6
6
  "types": "dist/client.d.ts",