@fre4x/gemini 1.0.65-beta.0 → 1.0.65

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.
Files changed (2) hide show
  1. package/dist/index.js +4 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -69666,9 +69666,11 @@ var VideoStatusOutputSchema = z3.object({
69666
69666
  });
69667
69667
  var LIST_MODELS_TOOL = {
69668
69668
  name: "list_models",
69669
- description: "List available models for Gemini media tools.",
69669
+ description: "List available models for Gemini media tools, including stable and preview catalogs when offered.",
69670
69670
  inputSchema: z3.object({
69671
- capability: z3.enum(["all", "analyze", "image", "video"]).default("all").describe("Filter by analyze, image, video, or all.")
69671
+ capability: z3.enum(["all", "analyze", "image", "video"]).default("all").describe(
69672
+ "Filter the returned model catalogs by analyze, image, video, or all."
69673
+ )
69672
69674
  }).strict(),
69673
69675
  outputSchema: ListModelsOutputSchema
69674
69676
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fre4x/gemini",
3
- "version": "1.0.65-beta.0",
3
+ "version": "1.0.65",
4
4
  "description": "A Gemini MCP server providing multimodal analysis and image/video generation.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",