diff --git a/docs/models/google.mdx b/docs/models/google.mdx index 6520cf4f..b53d08ff 100644 --- a/docs/models/google.mdx +++ b/docs/models/google.mdx @@ -1,10 +1,32 @@ --- title: "Google" -description: "Gemini 3 and 2.5 series models with specs, pricing, and capabilities" +description: "Gemini 3.6, 3.5, and 2.5 series models with specs, pricing, and capabilities" --- Source: [Google AI model docs](https://ai.google.dev/gemini-api/docs/models) +## Gemini 3.6 + + + + Reasoning · Speed + + `google/gemini-3.6-flash` + + Workhorse Flash model with better token efficiency, code generation, and multimodal reasoning for multi-step orchestration and agentic workflows. + + - $1.50 / $7.50 + - 1M context + - 64K max output + - Text, Image, Video, Audio, PDF input + - Thinking + - Web search + - Knowledge cutoff Jan 2025 + + + +--- + ## Gemini 3.5 @@ -23,6 +45,22 @@ description: "Gemini 3 and 2.5 series models with specs, pricing, and capabiliti - Web search - Knowledge cutoff Jan 2025 + + + Reasoning · Speed + + `google/gemini-3.5-flash-lite` + + Fastest, most cost-effective 3.5-class model for high-throughput agentic search, document processing, and lightweight subagent workflows. + + - $0.30 / $2.50 + - 1M context + - 64K max output + - Text, Image, Video, Audio, PDF input + - Thinking + - Web search + - Knowledge cutoff Jan 2025 + --- diff --git a/docs/models/overview.mdx b/docs/models/overview.mdx index 9270182c..cd5e3742 100644 --- a/docs/models/overview.mdx +++ b/docs/models/overview.mdx @@ -19,7 +19,7 @@ Every model supported by Timbal with full specs, pricing, capability scores, and Open-source models via Fireworks - Gemini 3 and 2.5 series + Gemini 3.6, 3.5, 3.1 and 2.5 series Ultra-low latency via Groq LPU diff --git a/python/tests/core/test_frontier_models_integration.py b/python/tests/core/test_frontier_models_integration.py index a2c2d508..8943ecd6 100644 --- a/python/tests/core/test_frontier_models_integration.py +++ b/python/tests/core/test_frontier_models_integration.py @@ -19,6 +19,18 @@ PROMPT = "Reply with exactly one word: ok" LIVE_MODELS = [ + pytest.param( + "google/gemini-3.6-flash", + "GEMINI_API_KEY", + None, + id="google-gemini-3.6-flash", + ), + pytest.param( + "google/gemini-3.5-flash-lite", + "GEMINI_API_KEY", + None, + id="google-gemini-3.5-flash-lite", + ), pytest.param( "xai/grok-4.5", "XAI_API_KEY", diff --git a/python/timbal/core/models.py b/python/timbal/core/models.py index 90d28fd0..adfde550 100644 --- a/python/timbal/core/models.py +++ b/python/timbal/core/models.py @@ -106,7 +106,9 @@ def get_context_window(model_id: str) -> int | None: "togetherai/google/gemma-3-27b-it", "togetherai/deepcogito/cogito-v2-1-671b", "togetherai/mistralai/Mistral-Small-24B-Instruct-2501", + "google/gemini-3.6-flash", "google/gemini-3.5-flash", + "google/gemini-3.5-flash-lite", "google/gemini-3.1-pro-preview", "google/gemini-3.1-flash-lite", "google/gemini-3-flash-preview", diff --git a/python/timbal/models.yaml b/python/timbal/models.yaml index 5ac9fdd2..de283019 100644 --- a/python/timbal/models.yaml +++ b/python/timbal/models.yaml @@ -551,6 +551,15 @@ models: output_price: 0.3 context_window: 32000 capabilities: [tools] +- id: google/gemini-3.6-flash + provider: google + display_name: Gemini 3.6 Flash + description: Workhorse Flash model with improved token efficiency, code generation, and multimodal reasoning for multi-step + agentic workflows. + input_price: 1.5 + output_price: 7.5 + context_window: 1048576 + capabilities: [vision, audio, video, tools, reasoning] - id: google/gemini-3.5-flash provider: google display_name: Gemini 3.5 Flash @@ -560,6 +569,15 @@ models: output_price: 9.0 context_window: 1048576 capabilities: [vision, audio, video, tools, reasoning] +- id: google/gemini-3.5-flash-lite + provider: google + display_name: Gemini 3.5 Flash Lite + description: Fastest, most cost-effective 3.5-class model for high-throughput agentic search, document processing, and + lightweight subagent workflows. + input_price: 0.3 + output_price: 2.5 + context_window: 1048576 + capabilities: [vision, audio, video, tools, reasoning] - id: google/gemini-3.1-pro-preview provider: google display_name: Gemini 3.1 Pro