All MicroEvals
Exclude security, rate limiting, billing, payments, subscrip...
Create MicroEval
Header image for Exclude security, rate limiting, billing, payments, subscrip...

Exclude security, rate limiting, billing, payments, subscrip...

Prompt

Exclude security, rate limiting, billing, payments, subscriptions, limits, tests, documentation, and code comments from the system and deliverables. These exclusions override all completeness requirements. The Gemini 3 Flash model can now write and execute Python code to actively manipulate and inspect images. Use cases Zoom and inspect: The model implicitly detects when details are too small (e.g., reading a distant gauge) and writes code to crop and re-examine the area at higher resolution. Visual math: The model can run multi-step calculations using code (e.g., summing line items on a receipt). Image annotation: The model can annotate images to answer questions, such as drawing arrows to show relationships. Note: While the model automatically handles zooming for small details, you should prompt it explicitly to use code for other tasks, such as "Write code to count the number of gears" or "Rotate this image to make it upright". Enable Code Execution with images import { GoogleGenAI } from '@google/genai'; import type { Interactions } from '@google/genai'; const ai = new GoogleGenAI({ apiKey: process.env['GEMINI_API_KEY'], }); const tools: Interactions.Tool[] = [ { type: 'code_execution', }, { type: 'google_search', }, { type: 'url_context', }, ]; const generationConfig = { max_output_tokens: 65536, thinkingLevel: 'high', }; async function main() { const interaction = await ai.interactions.create({ model: 'models/gemini-3.8-flash', input: 'INSERT_INPUT_HERE', tools: tools, generation_config: generationConfig, }); console.log(interaction.steps?.at(-1)); } main(); I want a Facial golden ratio analizer. upload face image(s) and gemini 3.8 analize and give the real result Send back the complete code files with all fixes applied. Fix all of the listed errors one by one, actually fixing them. Keep the original imports, because the files exist. Write out every single character, do not shorten anything. Fix every error. Do not write anything else, only the complete code files, and there must not be any comments in them. I never allow any simplified mock, placeholder, dummy, simulated, or fake crap, and write the complete files as unshortened production-ready code in a code block. They must be 100% error-free, and send them as downloadable files.

A system prompt was added to support web rendering

Drag to resize