gemini-design-mcp 3.3.0 → 3.3.1

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.
@@ -1,4 +1,4 @@
1
- import { GoogleGenAI, ThinkingLevel } from "@google/genai";
1
+ import { GoogleGenAI } from "@google/genai";
2
2
  const apiKey = process.env.API_KEY;
3
3
  if (!apiKey) {
4
4
  console.error("ERROR: API_KEY environment variable is required");
@@ -36,9 +36,6 @@ async function generateViaProxy(systemPrompt, userPrompt, model) {
36
36
  },
37
37
  generationConfig: {
38
38
  temperature: 1,
39
- thinkingConfig: {
40
- thinkingBudget: 1024, // LOW thinking level
41
- },
42
39
  },
43
40
  }),
44
41
  });
@@ -67,9 +64,6 @@ async function generateViaSdk(systemPrompt, userPrompt, model) {
67
64
  config: {
68
65
  systemInstruction: systemPrompt,
69
66
  temperature: 1,
70
- thinkingConfig: {
71
- thinkingLevel: ThinkingLevel.LOW,
72
- },
73
67
  },
74
68
  });
75
69
  return response.text ?? "";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gemini-design-mcp",
3
- "version": "3.3.0",
3
+ "version": "3.3.1",
4
4
  "description": "MCP server that uses Gemini 3 Pro for frontend/design code generation",
5
5
  "main": "build/index.js",
6
6
  "bin": {