You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|**Video Generation with Veo**| v8.32.0 | Video generation using Veo 3.1 (`veo-3.1`). Realistic video generation with many parameter options |[Video Generation Guide](docs/features/video-generation.md)|
40
41
|**Image Generation with Gemini**| v8.31.0 | Native image generation using Gemini 2.0 Flash Experimental (`imagen-3.0-generate-002`). High-quality image synthesis directly from Google AI. |[Image Generation Guide](docs/image-generation-streaming.md)|
41
42
|**HTTP/Streamable HTTP Transport**| v8.29.0 | Connect to remote MCP servers via HTTP with authentication headers, automatic retry with exponential backoff, and configurable rate limiting. |[HTTP Transport Guide](docs/mcp-http-transport.md)|
42
43
44
+
-**Video Generation** – Transform images into 8-second videos with synchronized audio using Google Veo 3.1 via Vertex AI. Supports 720p/1080p resolutions, portrait/landscape aspect ratios. → [Video Generation Guide](docs/features/video-generation.md)
45
+
-**Image Generation** – Generate images from text prompts using Gemini models via Vertex AI or Google AI Studio. Supports streaming mode with automatic file saving. → [Image Generation Guide](docs/IMAGE-GENERATION-STREAMING.md)
46
+
-**HTTP/Streamable HTTP Transport for MCP** – Connect to remote MCP servers via HTTP with authentication headers, retry logic, and rate limiting. → [HTTP Transport Guide](docs/MCP-HTTP-TRANSPORT.md)
47
+
- 🧠 **Gemini 3 Preview Support** - Full support for gemini-3-flash-preview and gemini-3-pro-preview with extended thinking capabilities
48
+
-**Structured Output with Zod Schemas** – Type-safe JSON generation with automatic validation using `schema` + `output.format: "json"` in `generate()`. → [Structured Output Guide](docs/features/structured-output.md)
49
+
-**CSV File Support** – Attach CSV files to prompts for AI-powered data analysis with auto-detection. → [CSV Guide](docs/features/multimodal-chat.md#csv-file-support)
50
+
-**PDF File Support** – Process PDF documents with native visual analysis for Vertex AI, Anthropic, Bedrock, AI Studio. → [PDF Guide](docs/features/pdf-support.md)
51
+
-**LiteLLM Integration** – Access 100+ AI models from all major providers through unified interface. → [Setup Guide](docs/LITELLM-INTEGRATION.md)
52
+
-**SageMaker Integration** – Deploy and use custom trained models on AWS infrastructure. → [Setup Guide](docs/SAGEMAKER-INTEGRATION.md)
53
+
-**OpenRouter Integration** – Access 300+ models from OpenAI, Anthropic, Google, Meta, and more through a single unified API. → [Setup Guide](docs/getting-started/providers/openrouter.md)
54
+
-**Human-in-the-loop workflows** – Pause generation for user approval/input before tool execution. → [HITL Guide](docs/features/hitl.md)
55
+
-**Guardrails middleware** – Block PII, profanity, and unsafe content with built-in filtering. → [Guardrails Guide](docs/features/guardrails.md)
-**Redis conversation export** – Export full session history as JSON for analytics and debugging. → [History Guide](docs/features/conversation-history.md)
Copy file name to clipboardExpand all lines: docs/cli/commands.md
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -58,6 +58,18 @@ Key flags:
58
58
-`--debug` – verbose logging and full JSON payloads.
59
59
-`--quiet` – suppress spinners.
60
60
61
+
**Video Generation (Veo 3.1):**
62
+
63
+
-`--outputMode` – output mode: `text` (default) or `video`.
64
+
-`--image` – path to input image file (required for video generation, e.g., ./input.jpg).
65
+
-`--videoOutput`, `-vo` – path to save generated video file.
66
+
-`--videoResolution` – `720p` or `1080p` (default `720p`).
67
+
-`--videoLength` – duration: `4`, `6`, or `8` seconds (default `6`).
68
+
-`--videoAspectRatio` – `9:16` (portrait) or `16:9` (landscape, default `16:9`).
69
+
-`--videoAudio` – include synchronized audio (default `true`).
70
+
71
+
**Note:** Video generation requires Vertex AI provider (`vertex`) and Veo 3.1 model (`veo-3.1`). The provider auto-switches to Vertex when `--outputMode video` is specified. Supported image formats: PNG, JPEG, WebP (max 20MB).
# Option 2: Environment variables (alternative to service account file)
208
+
# GOOGLE_CLOUD_* variables are equivalent to GOOGLE_VERTEX_* for project/location configuration
209
+
export GOOGLE_CLOUD_PROJECT="your-project-id"
210
+
export GOOGLE_CLOUD_LOCATION="us-central1"
211
+
```
212
+
213
+
**Note:** These are alternative approaches—you only need one. `GOOGLE_VERTEX_PROJECT` and `GOOGLE_CLOUD_PROJECT` map to the same project configuration; similarly, `GOOGLE_VERTEX_LOCATION` and `GOOGLE_CLOUD_LOCATION` specify the same region.
214
+
215
+
See [Video Generation Guide](features/video-generation.md) for complete setup and usage.
216
+
197
217
### **Regional Routing**
198
218
199
219
Set region-specific variables to control latency and compliance.
0 commit comments