gemini-3-prompts
Hoe schrijf je Gemini 3-prompts die revisies doorstaan?
Gemini3 Team · 18 juli 2026 · 6 min read
Keywords: Gemini 3.1 Pro prompts, prompt engineering Nederlands, AI documentanalyse, Gemini 3 code review
Published: 18 juli 2026 Author: Gemini3 Team
Waarom de meeste Gemini 3-prompts falen bij revisie — En hoe je het oplost
De meeste mensen behandelen het schrijven van prompts als het opstellen van een e-mail: eruit krijgen, verzenden, en hopen op het beste. Met Gemini 3.1 Pro—vooral op MidassAI Chat—is dat een recept voor dubbel werk. Niet omdat het model inconsistent is, maar omdat jouw prompt niet gebouwd is om scrutiny te doorstaan. Revisie is geen falen—het is waar het echte werk gebeurt. En als jouw prompt instort wanneer je vraagt "Wacht, wat over edge case X?" of "Kun je die logica achteruit traceren?", ben je uren kwijt—niet minuten.
Gemini 3.1 Pro blinkt uit in diepgang: redeneren over documenten van 100K tokens, het decomponeren van multi-step architecturen, het interpreteren van temporele videoframes, en het cross-verifiëren van claims across heterogene bronnen. Maar niets daarvan komt voort uit vage directives zoals "Leg quantum computing uit" of "Verbeter deze code." Het komt voort uit gestructureerde intentie—prompts engineered om revisiecycles te overleven door constraints, fallback logic, en expliciete validatiecriteria vooraf te coderen.
Voor wie is dit:
- Technisch schrijvers die whitepapers reviseren tegen nieuw bronmateriaal
- Backend-engineers die service mesh design-beslissingen valideren
- Onderzoekers die regulatory filings synthesizeren across jurisdicties
- Productleiders die feature specs stress-testen voor sprint planning
- Video-analisten die temporele causaliteit extraheren (bijv. "Bij 2:14–2:27, gaat subject A's gesture vooraf aan of volgt het op subject B's verbal cue?")
Dit zijn geen theoretische use cases. Het zijn workflows die we hebben gestress-test op MidassAI Chat met echte gebruikers—en waar poorly structured prompts routinematig faalden bij revisiestap twee.
Snel overzicht
Sjabloon 1: Long-Document Retrieval met Source Anchoring
Gebruik dit sjabloon voor het ophalen van informatie uit lange documenten:
Zeg niet: "Samenvat deze 80-pagina's SEC filing."
Zeg in plaats daarvan:
You are a compliance analyst reviewing Form 10-K for Acme Corp (2024). Retrieve and extract only disclosures related to cybersecurity risk factors (Item 1C), litigation contingencies (Item 3), and forward-looking statement disclaimers (Item 7). For each extracted clause:
- Quote verbatim (max 45 words)
- Cite exact page number and section header
- Flag any internal contradiction (e.g., "risk is 'material' on p.22 but 'immaterial' on p.41")
Do not paraphrase. Do not infer. Do not summarize beyond extraction.
Waarom dit revisies doorstaat: Expliciete anchoring naar pagina/sectie forceert fideliteit. Contradiction detection bouwt self-audit in—dus wanneer je later vraagt "Toon me alle contradictions flagged in Section 3", haalt Gemini 3.1 Pro ze direct op omdat ze werden gelogd tijdens de eerste pass, niet retroactief inferred.
Sjabloon 2: Logic Stress Testing voor Decision Trees
Gebruik dit sjabloon voor het stress-testen van logica:
Gebruik dit wanneer je business rules, policy enforcement, of conditional workflows valideert:
You are a systems auditor evaluating the loan approval engine. Given these three inputs:
- Credit score ≥ 720 → auto-approve
- Income ratio > 45% → require manual review
- Past default within 24 months → auto-reject
Generate all possible input combinations (n=8) and for each:- State final decision
- Trace the exact rule path taken (e.g., "Credit=730 → auto-approve; overrides income ratio=48%")
- Identify any rule conflicts (e.g., "Credit=690 AND default=yes → both reject and manual review triggered")
Output as CSV with columns: credit_score, income_ratio_pct, past_default, decision, conflict_flag.
Dit sjabloon forceert exhaustive enumeration—niet alleen "wat gebeurt er in de typical case." Wanneer je reviseert ("Wat als income ratio 44.9% is?"), gokt Gemini 3.1 Pro niet—het herberekent de full matrix in context, waarbij prior outputs behouden blijven voor side-by-side comparison.
Sjabloon 3: Code Architecture Decomposition
Gebruik dit sjabloon voor het decomponeren van code-architectuur:
Sla "Maak deze code beter" over. In plaats daarvan:
You are a senior backend architect reviewing this Go microservice (attached: main.go, handlers/user.go, pkg/db/connection.go). For each file:
- List all exported types/functions
- Map dependency flow: which functions call which, including cross-package calls
- Identify tight coupling points (e.g., handler directly instantiating DB connection instead of accepting interface)
- Propose one concrete refactoring per coupling point (e.g., "Extract db.Connection to interface; inject via constructor")
Output as Mermaid graph code + bullet list of refactorings.
Gemini 3.1 Pro parseert structuur en intentie—niet alleen syntax. Revisie wordt surgical: "Her-run dependency mapping na het injecteren van Redis client—hangt user handler nu af van cache?" De prompt heeft "dependency" al precies gedefinieerd, dus het antwoord is deterministisch.
Sjabloon 4: Temporal Video Analysis Prompt
Gebruik dit sjabloon voor temporele video-analyse:
Voor frame-nauwkeurige redenering (vereist video-upload naar MidassAI Chat):
Analyze uploaded video clip (0:00–3:12, 30fps). At timestamps 1:22–1:25 and 2:08–2:11:
- Identify primary subject motion (e.g., "left arm raises, then pauses")
- Correlate with audio waveform peaks (provide ms-aligned timestamps)
- Determine temporal ordering: does motion lead, lag, or coincide with peak?
- If lag > 120ms, flag potential sync issue.
Output table: timestamp_range | motion_description | audio_peak_ms | delta_ms | sync_flag.
Dit werkt omdat Gemini 3.1 Pro multimodal tokens jointly verwerkt. Revisie is niet "heb je iets gemist?"—het is "Her-analyzeer 1:22–1:25 met tightere motion thresholds (sub-pixel optical flow)", en het model her-uitvoert hetzelfde protocol met adjusted parameters.
Sjabloon 5–7: Research Triangulation, Edge-Case Generation, en Cross-Domain Translation
Gebruik deze sjablonen voor onderzoek, edge-cases en vertaling:
- Research Triangulation: "Compare FDA draft guidance (2024-05), EMA CHMP report (2023-11), and WHO technical brief (2024-02) on AI-enabled diagnostics. For each regulation: extract definition of 'clinical validation', list required evidence types, and note divergence in sample size thresholds. Output as markdown table with column 'Divergence severity (low/medium/high)'."
- Edge-Case Generation: "Given this Python function signature
def calculate_tax(income: float, state: str, dependents: int) -> float, generate 12 test cases covering: negative income, state='XX' (invalid), dependents=−1, income=inf, state='CA' with dependents=0, and 7 more boundary conditions. For each, state expected behavior and why it's a meaningful edge case." - Cross-Domain Translation: "Translate this Kubernetes Helm chart README (attached) into plain-language product spec for non-technical sales engineers. Preserve all version constraints, resource limits, and failure modes—but replace 'initContainer' with 'pre-start health check', 'tolerations' with 'deployment flexibility settings', etc. Include a glossary mapping technical terms to sales-facing equivalents."
Elk embedt revision readiness: expliciete scope, unambiguous success criteria, en gestructureerde output formats die diff-based validation mogelijk maken.
Je eerste revisie-bestendige prompt begint nu
Je hebt geen perfecte prompts nodig op dag één. Je hebt prompts nodig die met je mee leren. Elke keer dat je vraagt "Wat als X verandert?", behoudt Gemini 3.1 Pro op MidassAI Chat de original reasoning chain—dus revisie is niet opnieuw beginnen. Het is insight layeren.
Probeer een van deze sjablonen live te bouwen. Upload een 50-pagina's PDF, plak een 200-regelige codebase, of drop een 90-seconden video clip. Vraag vervolgens je eerste revisievraag: "Toon me waar assumptions break down." Dat is wanneer je het verschil ziet tussen een prompt die je een antwoord geeft, en een die je een werkende foundation geeft.