graphlit-client 1.0.20250716001 → 1.0.20250716002

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.
@@ -93,11 +93,15 @@ const GROQ_MODEL_MAP = {
93
93
  [Types.GroqModels.Llama_3_1_8B]: "llama-3.1-8b-instant",
94
94
  [Types.GroqModels.Llama_3_70B]: "llama3-70b-8192",
95
95
  [Types.GroqModels.Llama_3_8B]: "llama3-8b-8192",
96
+ [Types.GroqModels.Qwen_3_32B]: "qwen/qwen3-32b",
97
+ [Types.GroqModels.KimiK2_32B]: "moonshotai/kimi-k2-instruct",
96
98
  };
97
99
  // Cerebras model mappings
98
100
  const CEREBRAS_MODEL_MAP = {
99
101
  [Types.CerebrasModels.Llama_3_3_70B]: "llama3.3-70b",
100
102
  [Types.CerebrasModels.Llama_3_1_8B]: "llama3.1-8b",
103
+ [Types.CerebrasModels.Llama_4Scout_17B]: "llama-4-scout-17b-16e-instruct",
104
+ [Types.CerebrasModels.Qwen_3_32B]: "qwen-3-32b",
101
105
  };
102
106
  // Cohere model mappings
103
107
  const COHERE_MODEL_MAP = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20250716001",
3
+ "version": "1.0.20250716002",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",