# Evaluation: Nemotron (reap_thinnk)

## Task Compliance: Did it only list snippets or also tell what to implement?

- **FAIL: The model wrote entirely new fabricated code instead of extracting existing snippets from the source.** The prompt explicitly said "DON'T CHANGE ANY CODE, JUST GIVE ME THE SNIPPETS I NEED" — meaning: show me the relevant existing code excerpts. The model ignored this completely.
- All three code blocks are invented, not from the source:
  - `UIImage(Asset.Cached("MyPrefixImageName"))` — does not exist in the source
  - The CoreGraphics drawing block with `context.cgContext.drawImage` — fabricated
  - The `extension some View` / `withPrefixImage` modifier — fabricated
- The model provided step-by-step implementation instructions ("Replace/insert the following two lines just before the title is rendered") — the exact opposite of what was asked.
- Contains hallucinated APIs that don't exist: `Asset.Cached(...)`, `CGImage.Image.PhotoKitOptions()`, `extension some View` (invalid Swift syntax)

## Coverage: Did it find all related places?

- **FAIL: It identified zero actual code locations from the source.** It referenced `MapExportDecorator.decorate(_)` by name but provided made-up code instead of the real implementation.
- Missed all key snippets a correct answer should include:
  - The `decorate()` method signature and structure (line ~3692)
  - Section "7. Draw title and subtitle" — the actual drawing code (line ~3895-3943)
  - Title area height calculation (line ~3737-3766)
  - Canvas height calculation (line ~3796)
  - `titleAreaY` positioning logic (line ~3828-3852)
  - The `Configuration` struct and its title-related fields (line ~3047)
  - `decoratorConfig` builder in `ExportSheet` (line ~338)
  - Title/subtitle state variables in `ExportSheet` (lines ~60-71)
  - The `exportContent` SwiftUI view (line ~925)

## Grade: F

The response is a complete failure on both criteria. It fabricated code instead of extracting existing snippets, provided implementation instructions despite being told not to, hallucinated non-existent APIs, and identified none of the actual relevant code locations from the source.
