@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.
- package/dist/index.js +4 -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(
|
|
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
|
};
|