Ship a Full-Stack App with One Prompt

Copy this prompt into your AI coding agent, or open it in one below.

Give this to your AI Create a to-do list app using Puter.js

Coding manually? see the guide

Google

Google: Gemini 3.5 Flash

google/gemini-3.5-flash

Access Gemini 3.5 Flash from Google using Puter.js AI API.

Get Started
// npm install @heyputer/puter.js
import { puter } from '@heyputer/puter.js';

puter.ai.chat("Explain quantum computing in simple terms", {
    model: "google/gemini-3.5-flash"
}).then(response => {
    document.body.innerHTML = response.message.content;
});
<html>
<body>
    <script src="https://js.puter.com/v2/"></script>
    <script>
        puter.ai.chat("Explain quantum computing in simple terms", {
            model: "google/gemini-3.5-flash"
        }).then(response => {
            document.body.innerHTML = response.message.content;
        });
    </script>
</body>
</html>
# pip install openai
from openai import OpenAI

client = OpenAI(
    base_url="https://api.puter.com/puterai/openai/v1/",
    api_key="YOUR_PUTER_AUTH_TOKEN",
)

response = client.chat.completions.create(
    model="google/gemini-3.5-flash",
    messages=[
        {"role": "user", "content": "Explain quantum computing in simple terms"}
    ],
)

print(response.choices[0].message.content)
curl https://api.puter.com/puterai/openai/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_PUTER_AUTH_TOKEN" \
  -d '{
    "model": "google/gemini-3.5-flash",
    "messages": [
      {"role": "user", "content": "Explain quantum computing in simple terms"}
    ]
  }'

Model Card

Gemini 3.5 Flash is Google DeepMind's frontier-speed model that combines Flash-tier latency and cost with near-Pro-level reasoning, announced at Google I/O 2026. It processes output 4x faster than comparable frontier models while outperforming Gemini 3.1 Pro on coding and agentic benchmarks — 76.2% on Terminal-Bench 2.1, 83.6% on MCP Atlas, and 84.2% on CharXiv Reasoning.

It's purpose-built for agentic workflows: orchestrating multi-step tool use, long-context document analysis, and iterative code generation. With a 1M token context window and full multimodal input support (text, image, audio, video, PDF), it handles complex real-world tasks at scale. At $1.50 per million input tokens and $9.00 per million output tokens, it's the best choice for developers who need frontier intelligence without frontier latency or cost.

Context Window 1M

tokens

Max Output 66K

tokens

Input Cost $1.5

per million tokens

Output Cost $9

per million tokens

Input text, image, audio, video, pdf

modalities

Tool Use Yes

 

Knowledge Cutoff Jan 2025

 

Release Date May 19, 2026

 

Model Playground

Try Gemini 3.5 Flash instantly in your browser.
This playground uses the Puter.js AI API — no API keys or setup required.

Chat google/gemini-3.5-flash
Google
Chat with Gemini 3.5 Flash
Powered by Puter.js

Benchmarks

How Gemini 3.5 Flash performs on standard evaluations.

Artificial Analysis
Intelligence Index
52.0
Better than 94% of tracked models
Artificial Analysis
Coding Index
70.1
Better than 86% of tracked models
BenchmarkScore
GPQA Diamond Graduate-level science Q&A
92.2%
Humanity's Last Exam Cross-domain reasoning
42.7%
SciCode Scientific programming
53.1%
IFBench Instruction following
76.3%
LCR Long-context reasoning
81.0%
Terminal-Bench Hard Agentic terminal tasks
40.9%
τ²-Bench Tool use / agents
95.3%

Scores sourced from Artificial Analysis.

Find other Google models

Chat

Gemini 3.7 Flash

Gemini 3.7 Flash is Google's workhorse Flash-tier model, released August 13, 2026, three weeks after Gemini 3.6 Flash. It's built for coding and agentic workflows, targeting software engineering, web development, and knowledge-dense domains like finance and law. Google reports gains over Gemini 3.6 Flash on several benchmarks. DeepSWE v1.1 rose from 49.0% to 65.3%, FrontierCode 1.1 from 34.4% to 43.6%, and AutomationBench from 17.0% to 30.4%. On FrontierCode 1.1 it scores above Claude Sonnet 5 (42.7%) and GPT-5.6 Terra (41.3%), though GPT-5.6 Terra edges it out on Terminal-bench 2.1 (87.4% vs 85.8%). It accepts text, image, video, audio, and PDF input with a 1M token context window and 64K token output limit. It supports function calling, search as a tool, and computer use, and has a March 2026 knowledge cutoff. It's priced at roughly half of Gemini 3.6 Flash's rate, fitting teams running coding agents or high-volume document processing.

Chat

Gemini 3.5 Flash-Lite

Gemini 3.5 Flash-Lite is Google's fastest and most cost-efficient model in the Gemini 3.5 series, built for high-throughput, low-latency workloads. It scores 54% on Terminal-Bench 2.1 and 72.2% on GDM-MRCR v2, up from 31% and 60.1% for Gemini 3.1 Flash-Lite. It also outperforms the larger Gemini 3 Flash on SWE-Bench Pro (54.2% vs. 49.6%) and OSWorld-Verified (74.0% vs. 65.1%), while generating output at roughly 350 tokens per second. It supports text, image, video, audio, and PDF input with a 1M token context window, configurable thinking levels, and function calling, including computer use as a built-in tool. It's suited for agentic search, document processing, and other high-volume tasks where throughput and cost matter more than maximum reasoning depth.

Chat

Gemini 3.6 Flash

Gemini 3.6 Flash is Google's workhorse Flash-tier model, released as the successor to Gemini 3.5 Flash. It's built for running AI agents in production, with improvements in coding precision, computer use, and multimodal understanding. In Google's own benchmarks, it scores 83.0% on OSWorld-Verified (up from 78.4% for 3.5 Flash), 49% on DeepSWE (up from 37%), 63.9% on MLE-Bench (up from 49.7%), and 58.7% on SWE-Bench Pro. It also produces 17% fewer output tokens than 3.5 Flash on comparable tasks. It accepts text, image, video, audio, and PDF input with a 1M token context window, supports function calling and a built-in computer-use tool, and has a March 2026 knowledge cutoff. At $0.75 per million input tokens and $3.75 per million output tokens, it's well under 3.5 Flash's $1.50 and $9.00 rates.

Frequently Asked Questions

How do I use Gemini 3.5 Flash?

You can access Gemini 3.5 Flash by Google through Puter.js AI API. Include the library in your web app or Node.js project and start making calls with just a few lines of JavaScript — no backend and no configuration required. You can also use it with Python or cURL via Puter's OpenAI-compatible API.

Is Gemini 3.5 Flash free?

Yes, it is free if you're using it through Puter.js. With the User-Pays Model, you can add Gemini 3.5 Flash to your app at no cost — your users pay for their own AI usage directly, making it completely free for you as a developer.

What is the pricing for Gemini 3.5 Flash?
Gemini 3.5 Flash costs $1.5 per 1M input tokens and $9 per 1M output tokens.
Price per 1M tokens
Input$1.5
Output$9
Who created Gemini 3.5 Flash?

Gemini 3.5 Flash was created by Google and released on May 19, 2026.

What is the context window of Gemini 3.5 Flash?

Gemini 3.5 Flash supports a context window of 1M tokens. For reference, that is roughly equivalent to 2,097 pages of text.

What is the max output length of Gemini 3.5 Flash?

Gemini 3.5 Flash can generate up to 66K tokens in a single response.

What is the knowledge cutoff of Gemini 3.5 Flash?

Gemini 3.5 Flash has a knowledge cutoff date of Jan 2025. This means the model was trained on data available up to that date.

What types of input can Gemini 3.5 Flash process?

Gemini 3.5 Flash accepts the following input types: text, image, audio, video, pdf. It produces: text.

Does Gemini 3.5 Flash support tool use (function calling)?

Yes, Gemini 3.5 Flash supports tool use (function calling), allowing it to interact with external tools, APIs, and data sources as part of its response flow.

How does Gemini 3.5 Flash perform on benchmarks?

Gemini 3.5 Flash scores 52.0 on the Artificial Analysis Intelligence Index, outperforming 94% of tracked models. On coding, it scores 70.1 (outperforms 86% of models).

Does it work with React / Vue / Vanilla JS / Node / etc.?

Yes — the Gemini 3.5 Flash API works with any JavaScript framework, Node.js, or plain HTML through Puter.js. Just include the library and start building. See the documentation for more details.

Get started with Puter.js

Add Gemini 3.5 Flash to your app without worrying about API keys or setup.

Read the Docs View Tutorials