Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 60 additions & 0 deletions crates/forge_repo/src/provider/provider.json
Original file line number Diff line number Diff line change
Expand Up @@ -1397,6 +1397,36 @@
"response_type": "Google",
"url": "https://{{#if (eq LOCATION \"global\")}}aiplatform.googleapis.com{{else}}{{LOCATION}}-aiplatform.googleapis.com{{/if}}/v1beta1/projects/{{PROJECT_ID}}/locations/{{LOCATION}}/publishers/google",
"models": [
{
"id": "gemini-3.6-flash",
"name": "Gemini 3.6 Flash",
"description": "Google's latest workhorse model, optimized for speed, cost, and native tool use",
"context_length": 1048576,
"tools_supported": true,
"supports_parallel_tool_calls": true,
"supports_reasoning": true,
"input_modalities": ["text", "image"]
},
{
"id": "gemini-3.5-flash-lite",
"name": "Gemini 3.5 Flash-Lite",
"description": "Google's fastest and most cost-efficient Gemini model, optimized for low latency use cases",
"context_length": 1048576,
"tools_supported": true,
"supports_parallel_tool_calls": true,
"supports_reasoning": true,
"input_modalities": ["text", "image"]
},
{
"id": "gemini-3.5-flash-cyber",
"name": "Gemini 3.5 Flash Cyber",
"description": "Google's narrow, security-focused variant of the Gemini 3.5 Flash model",
"context_length": 1048576,
"tools_supported": true,
"supports_parallel_tool_calls": true,
"supports_reasoning": true,
"input_modalities": ["text", "image"]
},
{
"id": "gemini-3.5-flash",
"name": "Gemini 3.5 Flash",
Expand Down Expand Up @@ -2776,6 +2806,36 @@
"response_type": "Google",
"url": "https://generativelanguage.googleapis.com/v1beta",
"models": [
{
"id": "gemini-3.6-flash",
"name": "Gemini 3.6 Flash",
"description": "Google's latest workhorse model, optimized for speed, cost, and native tool use",
"context_length": 1048576,
"tools_supported": true,
"supports_parallel_tool_calls": true,
"supports_reasoning": true,
"input_modalities": ["text", "image"]
},
{
"id": "gemini-3.5-flash-lite",
"name": "Gemini 3.5 Flash-Lite",
"description": "Google's fastest and most cost-efficient Gemini model, optimized for low latency use cases",
"context_length": 1048576,
"tools_supported": true,
"supports_parallel_tool_calls": true,
"supports_reasoning": true,
"input_modalities": ["text", "image"]
},
{
"id": "gemini-3.5-flash-cyber",
"name": "Gemini 3.5 Flash Cyber",
"description": "Google's narrow, security-focused variant of the Gemini 3.5 Flash model",
"context_length": 1048576,
"tools_supported": true,
"supports_parallel_tool_calls": true,
"supports_reasoning": true,
"input_modalities": ["text", "image"]
},
{
"id": "gemini-3.5-flash",
"name": "Gemini 3.5 Flash",
Expand Down
30 changes: 30 additions & 0 deletions vertex.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,34 @@
[
{
"id": "google/gemini-3.6-flash",
"name": "Gemini 3.6 Flash",
"description": "Google's latest workhorse model, optimized for speed, cost, and native tool use",
"context_length": 1048576,
"tools_supported": true,
"supports_parallel_tool_calls": true,
"supports_reasoning": true,
"input_modalities": ["text", "image"]
},
{
"id": "google/gemini-3.5-flash-lite",
"name": "Gemini 3.5 Flash-Lite",
"description": "Google's fastest and most cost-efficient Gemini model, optimized for low latency use cases",
"context_length": 1048576,
"tools_supported": true,
"supports_parallel_tool_calls": true,
"supports_reasoning": true,
"input_modalities": ["text", "image"]
},
{
"id": "google/gemini-3.5-flash-cyber",
"name": "Gemini 3.5 Flash Cyber",
"description": "Google's narrow, security-focused variant of the Gemini 3.5 Flash model",
"context_length": 1048576,
"tools_supported": true,
"supports_parallel_tool_calls": true,
"supports_reasoning": true,
"input_modalities": ["text", "image"]
},
{
"id": "google/gemini-3.5-flash",
"name": "Gemini 3.5 Flash",
Expand Down
Loading