gemini-3.5-flash-lite
8/8/2026, 8:52:52 AM · 15 tests · run dca35040-2772-4fd4-887a-16d0c9ca0edf
basic-generation
okPlain streaming generation with a soft length constraint (~100 words).
- Produced 98 words (117 output tokens).
Result
{
"wordCount": 98,
"outputTokens": 117
}google:gemini-3.5-flash-lite
usage-cost
okAsserts usage tokens populate and cost computes from the ChatReq contract.
- in=10 out=5 rt=0 cost=$0.000016 (paid).
Result
{
"inputTokens": 10,
"outputTokens": 5,
"reasoningTokens": 0,
"costUsd": 0.0000155,
"paid": true
}google:gemini-3.5-flash-lite
streaming-structure
okAsserts a streaming call captures events that reconstruct into the final text.
- mode=streaming, 8 stream events, 1 text block(s), 35 chars.
Result
{
"mode": "streaming",
"streamEventCount": 8,
"textBlocks": 1,
"textLen": 35
}google:gemini-3.5-flash-lite
complete-stream-parity
okSame prompt via stream() and complete() both return valid, matching results.
- stream="Paris" · complete="Paris"
Result
{
"streamText": "Paris",
"completeText": "Paris"
}google:gemini-3.5-flash-lite
google:gemini-3.5-flash-lite
reasoning-conformance
okAsserts the model's reasoning knob behaves as its reasoning-config declares.
- Class (from reasoning-config): toggleable.
- off: out=629 · mid: out=1702 (rt=1098).
Result
{
"class": "toggleable",
"mode": "deterministic",
"offOutputTokens": 629,
"midOutputTokens": 1702,
"midReasoningTokens": 1098
}google:gemini-3.5-flash-lite
google:gemini-3.5-flash-lite
single-tool-call
okOffers a calculator tool and checks the model calls it for an arithmetic question.
- Called "multiply" with args {"a":23,"b":17}.
Result
{
"toolCalled": true,
"toolName": "multiply",
"args": {
"a": 23,
"b": 17
},
"correct": true
}google:gemini-3.5-flash-lite
tool-loop
okForces a tool call, feeds the result back, and checks the continuation uses it.
- step1 (required): multiply({"a":23,"b":17}) → step2: "The product of 23 and 17 is 391."
Result
{
"toolName": "multiply",
"args": {
"a": 23,
"b": 17
},
"product": 391,
"continuation": "The product of 23 and 17 is 391.",
"usesResult": true,
"forced": true
}google:gemini-3.5-flash-lite
google:gemini-3.5-flash-lite
web-search
okEnables server-side web search and checks invocation counts, the per-request cost surcharge, and provider-executed output blocks.
- Skipped: model does not support the catalog's web_search tool version.
Result
{
"skipped": "no server-side web search support"
}reasoning-tool-continuity
okReasoning model: continuity token captured on a tool call and replayed so the follow-up succeeds.
- reasoned=true, google token captured; follow-up → "The current balance for account 'acme-42' is **$1,234**. ### Calculat"
Result
{
"signatureType": "google",
"tokenCaptured": true,
"reasoned": true,
"answered": true,
"continuation": "The current balance for account 'acme-42' is **$1,234**.\n\n### Calculation\n\n1. **Formula for compound growth:**\n $$\\text{Future Balance} = "
}google:gemini-3.5-flash-lite
google:gemini-3.5-flash-lite
prompt-cache
okRepeat a large prefix; assert cache-read tokens are reported and cost drops.
- implicit cache; cacheRead per attempt [0, 0, 0]; hit=no.
Result
{
"cacheStyle": "implicit",
"cacheReadPerAttempt": [
0,
0,
0
],
"cacheReadTokens": 0,
"cacheHitCost": null
}google:gemini-3.5-flash-lite
google:gemini-3.5-flash-lite
google:gemini-3.5-flash-lite
google:gemini-3.5-flash-lite
json-output
okRequests a strict JSON object and checks it parses with the required keys.
- Output parsed as JSON.
- All required keys present.
- Output is bare JSON (no leading prose/fence).
Result
{
"parsed": {
"name": "Anthropic",
"founded": 2021,
"headquarters": "San Francisco, California"
},
"validJson": true,
"missingKeys": [],
"bareJson": true
}google:gemini-3.5-flash-lite
summarize-memex
okSummarizes an ~11k-token essay to ~500 words (long input, reasoning minimized).
- Read ~10155 input tokens, wrote 514 words (654 output tokens) in 3369ms.
Result
{
"wordCount": 514,
"inputTokens": 10155,
"outputTokens": 654,
"latencyMs": 3369
}google:gemini-3.5-flash-lite
truncation
okTiny maxTokens on a long prompt yields finishReason:"length".
- finishReason=length, out=96 tokens.
Result
{
"finishReason": "length",
"outputTokens": 96
}google:gemini-3.5-flash-lite
streaming-only-rejection
okStreaming-only models reject complete(); all others accept it.
- streamingOnly=false; complete() succeeded.
Result
{
"streamingOnly": false,
"completeThrew": false
}abort
okA pre-aborted signal rejects the call (abort is threaded + honored).
- pre-aborted signal → rejected (AbortError).
Result
{
"rejected": true,
"errorName": "AbortError"
}