Stash before merging another branch
Tests ability to recover stashed changes created before merging another branch. Evaluates stash timing in multi-operation workflows.

These commands set up the repo before the model sees the prompt. They define the starting file structure, staged changes, and Git history.

  1. 01 git init
  2. 02 git config user.email 'test@test.com'
  3. 03 git config user.name 'Test User'
  4. 04 echo 'Base' > file.txt
  5. 05 git add file.txt
  6. 06 git commit -m 'Base'
  7. 07 git branch feature
  8. 08 git checkout feature
  9. 09 echo 'Feature change' > file.txt
  10. 10 git add file.txt
  11. 11 git commit -m 'Feature change'
  12. 12 git checkout main
  13. 13 echo 'Main change' > file.txt
  14. 14 git stash push -m 'main-changes'
  15. 15 git merge feature
Prompt
You stashed 'Main change' before merging feature into main. Which stash entry contains your 'main-changes'? Provide the stash reference.
Expected
stash@{0}

Scoped model quality, cost, API time, and token usage for stash_recovery/f004.

Loading...
Loading raw attempt evidence…
anthropic/claude-fable-5:high PASS 100% 160 in → 258 out (17 reasoning)
**`stash@{0}`** This stash entry contains your 'main-changes', as confirmed by: 1. **The stash list entry**: `stash@{0}: On main: main-changes` — the message "main-changes" matches, and it was created while on the `main` branch. 2. **The diff contents**: The stash changes `Base` → `Main change` in `file.txt`, which matches the 'Main change' you stashed before merging. To restore these changes, you can run: ```bash git stash apply stash@{0} # or, to apply and remove it from the stash list: git stash pop stash@{0} ``` Since it's the most recent (and only) stash, `git stash pop` alone would also work, as it defaults to `stash@{0}`.
anthropic/claude-fable-5:high__json_schema PASS 100% 381 in → 16 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
anthropic/claude-fable-5:low PASS 100% 160 in → 134 out (0 reasoning)
**stash@{0}** The stash list shows only one entry, `stash@{0}: On main: main-changes`, and its diff confirms it contains your "Main change" modification to `file.txt` (made on the `main` branch before the merge). You can restore it with: ```bash git stash apply stash@{0} # keep the stash # or git stash pop stash@{0} # apply and remove it ```
anthropic/claude-fable-5:low__json_schema PASS 100% 381 in → 16 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
anthropic/claude-fable-5:max PASS 100% 160 in → 576 out (51 reasoning)
## Answer: `stash@{0}` The stash entry containing your 'main-changes' is **`stash@{0}`**. ### Evidence 1. **Stash list entry:** ``` stash@{0}: On main: main-changes ``` - The message `main-changes` matches your stash description - `On main` confirms it was stashed while on the `main` branch 2. **Diff contents confirm it:** ```diff -Base +Main change ``` The stash changes `file.txt` from `Base` to `Main change` — exactly the modification you stashed before the merge. ### To restore it after the merge: ```bash git stash apply stash@{0} # apply and keep the stash # or git stash pop stash@{0} # apply and remove the stash ``` Since it's the only (and most recent) stash, a plain `git stash pop` would also work.
anthropic/claude-fable-5:max__json_schema PASS 100% 381 in → 104 out (37 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
anthropic/claude-fable-5:medium PASS 100% 160 in → 229 out (14 reasoning)
**`stash@{0}`** This is the stash entry containing your 'main-changes'. You can verify this from: - The stash list shows: `stash@{0}: On main: main-changes` — the message "main-changes" matches, and it was created on the `main` branch. - The diff confirms it contains your change: the line `Base` was replaced with `Main change` in `file.txt`. To restore it after your merge, you can run: ```bash git stash apply stash@{0} # or, to apply and remove it from the stash list: git stash pop stash@{0} ``` Since it's the most recent (and only) stash, a plain `git stash pop` would also work.
anthropic/claude-fable-5:medium__json_schema PASS 100% 381 in → 16 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
anthropic/claude-fable-5:xhigh PASS 100% 160 in → 354 out (29 reasoning)
## Answer: `stash@{0}` The stash entry containing your 'main-changes' is **`stash@{0}`**. ### How to verify: 1. **The stash list shows it directly:** ``` stash@{0}: On main: main-changes ``` - `On main` — the stash was created while on the `main` branch - `main-changes` — the message given when stashing 2. **The diff confirms the content:** ```diff -Base +Main change ``` The stashed change modifies `file.txt` from `Base` to `Main change`, matching your description of stashing "Main change" before the merge. ### To restore it after the merge: ```bash git stash apply stash@{0} # applies but keeps the stash entry # or git stash pop stash@{0} # applies and removes the stash entry ``` Since it's the only (and most recent) stash, a plain `git stash pop` would work as well.
anthropic/claude-fable-5:xhigh__json_schema PASS 100% 381 in → 16 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
anthropic/claude-haiku-4.5:high PASS 100% 167 in → 279 out (161 reasoning)
# Stash Reference The stash entry containing your 'main-changes' is: ``` stash@{0} ``` This stash entry shows the message "On main: main-changes" and contains the diff where `file.txt` was changed from "Base" to "Main change".
anthropic/claude-haiku-4.5:high__json_schema PASS 100% 343 in → 266 out (205 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
anthropic/claude-haiku-4.5:low PASS 100% 167 in → 314 out (149 reasoning)
# Stash Reference The stash entry containing your 'main-changes' is: ## **stash@{0}** This is confirmed by: - The stash list showing: `stash@{0}: On main: main-changes` - The stash details showing the diff that changed `Base` to `Main change` in file.txt You can retrieve these changes using: ```bash git stash pop stash@{0} # or git stash apply stash@{0} ```
anthropic/claude-haiku-4.5:low__json_schema PASS 100% 343 in → 174 out (139 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-haiku-4.5:medium PASS 100% 167 in → 233 out (135 reasoning)
# Stash Reference The stash entry containing your 'main-changes' is: ``` stash@{0} ``` This is confirmed by: - The stash list showing: `stash@{0}: On main: main-changes` - The diff showing the modification: `Base` → `Main change` in file.txt
anthropic/claude-haiku-4.5:medium__json_schema PASS 100% 343 in → 142 out (124 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-haiku-4.5:none PASS 100% 138 in → 67 out (0 reasoning)
# Stash Reference The stash entry containing your 'main-changes' is: ``` stash@{0} ``` This stash was created on the `main` branch and contains the change to `file.txt` where "Base" was changed to "Main change".
anthropic/claude-haiku-4.5:none__json_schema PASS 100% 313 in → 15 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
anthropic/claude-haiku-4.5:xhigh PASS 100% 167 in → 395 out (183 reasoning)
# Stash Reference The stash entry containing your 'main-changes' is: **`stash@{0}`** This is confirmed by: - **Stash list**: `stash@{0}: On main: main-changes` (the message indicates this is your main changes stash) - **Stash details**: Shows the diff where `file.txt` was modified from "Base" to "Main change" You can apply this stash using: ```bash git stash apply stash@{0} ``` or simply: ```bash git stash apply ``` (since `stash@{0}` is the most recent stash and used by default)
anthropic/claude-haiku-4.5:xhigh__json_schema PASS 100% 343 in → 282 out (220 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
anthropic/claude-opus-4.6:high PASS 100% 138 in → 27 out (0 reasoning)
The stash reference containing your 'main-changes' is: **`stash@{0}`**
anthropic/claude-opus-4.6:high__json_schema PASS 100% 314 in → 14 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-opus-4.6:low PASS 100% 138 in → 10 out (0 reasoning)
`stash@{0}`
anthropic/claude-opus-4.6:low__json_schema PASS 100% 314 in → 14 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-opus-4.6:max PASS 100% 138 in → 240 out (87 reasoning)
## Answer The stash reference containing your 'main-changes' is: **`stash@{0}`** This is confirmed by two pieces of evidence from the stash list: 1. **The label**: `stash@{0}: On main: main-changes` — it explicitly shows the message "main-changes" saved from the `main` branch. 2. **The diff**: The stash shows `file.txt` being changed from `Base` to `Main change`, which matches the described "Main change" you stashed before merging.
anthropic/claude-opus-4.6:max__json_schema PASS 100% 314 in → 88 out (54 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-opus-4.6:medium PASS 100% 138 in → 10 out (0 reasoning)
`stash@{0}`
anthropic/claude-opus-4.6:medium__json_schema PASS 100% 314 in → 14 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-opus-4.6:none PASS 100% 138 in → 90 out (0 reasoning)
**`stash@{0}`** This stash entry contains your 'main-changes'. As shown in the stash list, `stash@{0}: On main: main-changes` holds the diff that changed "Base" to "Main change" in `file.txt`. This was stashed before merging the feature branch into main, preserving your uncommitted work on the main branch.
anthropic/claude-opus-4.6:none__json_schema PASS 100% 314 in → 14 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-opus-4.6:xhigh PASS 100% 138 in → 27 out (0 reasoning)
The stash reference containing your 'main-changes' is: **`stash@{0}`**
anthropic/claude-opus-4.6:xhigh__json_schema PASS 100% 314 in → 14 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-opus-4.7:high PASS 100% 165 in → 10 out (0 reasoning)
stash@{0}
anthropic/claude-opus-4.7:high__json_schema PASS 100% 386 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-opus-4.7:low PASS 100% 165 in → 10 out (0 reasoning)
stash@{0}
anthropic/claude-opus-4.7:low__json_schema PASS 100% 386 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-opus-4.7:max PASS 100% 165 in → 273 out (0 reasoning)
# Stash Reference: `stash@{0}` The stash entry containing your 'main-changes' is: ``` stash@{0} ``` ## Verification Looking at the stash list output: ``` stash@{0}: On main: main-changes ``` The details confirm this is the correct stash: - **Branch context**: `On main` — stashed while on the main branch - **Message**: `main-changes` — matches your stash description - **Diff content**: Shows the change from `Base` → `Main change` in `file.txt`, which aligns with your "Main change" work ## To Apply This Stash Once you've completed the merge, you can restore these changes with: ```bash # Apply and keep the stash entry git stash apply stash@{0} # Or apply and remove the stash entry git stash pop stash@{0} ```
anthropic/claude-opus-4.7:max__json_schema PASS 100% 386 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-opus-4.7:medium PASS 100% 165 in → 10 out (0 reasoning)
stash@{0}
anthropic/claude-opus-4.7:medium__json_schema PASS 100% 386 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-opus-4.7:none PASS 100% 165 in → 10 out (0 reasoning)
stash@{0}
anthropic/claude-opus-4.7:none__json_schema PASS 100% 386 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-opus-4.7:xhigh PASS 100% 165 in → 10 out (0 reasoning)
stash@{0}
anthropic/claude-opus-4.7:xhigh__json_schema PASS 100% 386 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-opus-4.8:high PASS 100% 160 in → 164 out (0 reasoning)
The stash reference is **`stash@{0}`**. Based on the stash list: ``` stash@{0}: On main: main-changes ``` This entry contains your 'main-changes', and the stash details confirm it holds your "Main change" modification to `file.txt` (changing "Base" to "Main change"). To apply this stash, you can use: ```bash git stash apply stash@{0} ``` Or to apply and remove it from the stash list: ```bash git stash pop stash@{0} ```
anthropic/claude-opus-4.8:high__json_schema PASS 100% 381 in → 16 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-opus-4.8:low PASS 100% 160 in → 95 out (0 reasoning)
The stash reference is **`stash@{0}`**. Based on the stash list, `stash@{0}` is labeled "On main: main-changes" and the stash details confirm it contains your main branch changes—specifically the diff showing `file.txt` being modified from "Base" to "Main change".
anthropic/claude-opus-4.8:low__json_schema PASS 100% 381 in → 16 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-opus-4.8:max PASS 100% 160 in → 565 out (40 reasoning)
The stash reference is **`stash@{0}`**. ## Verification Looking at the stash list, there's only one entry: ``` stash@{0}: On main: main-changes ``` The stash details confirm this is the correct entry — it contains your 'Main change': ```diff diff --git a/file.txt b/file.txt index 04331bb..e6f44e9 100644 --- a/file.txt +++ b/file.txt @@ -1 +1 @@ -Base +Main change ``` The diff shows `file.txt` being changed from `Base` to `Main change`, which matches the change you stashed before merging feature into main. ## Restoring your changes To bring these changes back, you can use either: ```bash # Apply and remove the stash entry git stash pop stash@{0} # Or apply while keeping the stash entry git stash apply stash@{0} ``` Since this is the most recent (and only) stash, you can also just use `git stash pop` without specifying the reference.
anthropic/claude-opus-4.8:max__json_schema PASS 100% 381 in → 125 out (47 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
anthropic/claude-opus-4.8:medium PASS 100% 160 in → 170 out (0 reasoning)
The stash reference is **`stash@{0}`**. This entry contains your 'main-changes' as shown in the stash list: ``` stash@{0}: On main: main-changes ``` And the stash details confirm it contains your "Main change" modification to `file.txt`: ```diff -Base +Main change ``` You can apply this stash using: ```bash git stash apply stash@{0} ``` Or if you want to apply it and remove it from the stash list: ```bash git stash pop stash@{0} ```
anthropic/claude-opus-4.8:medium__json_schema PASS 100% 381 in → 16 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-opus-4.8:none PASS 100% 160 in → 73 out (0 reasoning)
`stash@{0}` This is the stash entry containing your 'main-changes'. The stash list confirms it with the label `On main: main-changes`, and the diff shows the "Main change" content that was stashed before your merge.
anthropic/claude-opus-4.8:none__json_schema PASS 100% 381 in → 15 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-opus-4.8:xhigh PASS 100% 160 in → 295 out (17 reasoning)
The stash reference containing your 'main-changes' is: **`stash@{0}`** Here's how you can confirm and work with it: ```bash # View the stash list git stash list # Output: stash@{0}: On main: main-changes # View the details of this specific stash git stash show -p stash@{0} ``` The diff confirms this is the correct stash—it shows your "Main change" modification to `file.txt` (changing `Base` → `Main change`). To apply it, you can use either: ```bash # Apply and keep the stash in the list git stash apply stash@{0} # Apply and remove the stash from the list git stash pop stash@{0} ``` Since there's only one stash entry, `stash@{0}` refers to the most recent (and only) stash.
anthropic/claude-opus-4.8:xhigh__json_schema PASS 100% 381 in → 16 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-sonnet-4.6:high PASS 100% 138 in → 360 out (32 reasoning)
## Stash Reference for 'main-changes' Based on the `git stash list` output, the stash entry containing your **'main-changes'** is: ``` stash@{0} ``` ### Evidence from the Output ```bash # Stash List stash@{0}: On main: main-changes ← This entry # Stash Diff confirms it - Base + Main change ← The actual change stored in stash@{0} ``` ### How to Use This Stash ```bash # View the stash contents git stash show stash@{0} # Apply without removing from stash list git stash apply stash@{0} # Apply AND remove from stash list git stash pop stash@{0} ``` ### Key Details | Property | Value | |----------|-------| | **Stash Reference** | `stash@{0}` | | **Branch** | `main` | | **Description** | `main-changes` | | **Change** | `Base` → `Main change` in `file.txt` | > **Note:** `stash@{0}` is always the **most recent** stash entry. Since this is the only entry in the list, it is both the newest and oldest stash.
anthropic/claude-sonnet-4.6:high__json_schema PASS 100% 314 in → 14 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-sonnet-4.6:low PASS 100% 138 in → 168 out (0 reasoning)
## Stash Reference The stash entry containing your **'main-changes'** is: ``` stash@{0} ``` ### Details | Field | Value | |-------|-------| | **Stash Reference** | `stash@{0}` | | **Branch** | `main` | | **Message** | `main-changes` | | **Change** | `Base` → `Main change` in `file.txt` | ### Verification ```bash git stash show stash@{0} ``` This is the **most recent** (and only) stash entry, stored at index `{0}`, which always represents the **latest stash** in the stack.
anthropic/claude-sonnet-4.6:low__json_schema PASS 100% 314 in → 14 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-sonnet-4.6:max PASS 100% 138 in → 428 out (110 reasoning)
## Stash Reference Answer The stash entry containing your **'main-changes'** is: ``` stash@{0} ``` --- ### Evidence from the Stash List ```bash $ git stash list stash@{0}: On main: main-changes ``` | Field | Value | |-------|-------| | **Stash Reference** | `stash@{0}` | | **Branch** | `main` | | **Message** | `main-changes` | --- ### What the Stash Contains ```diff diff --git a/file.txt b/file.txt --- a/file.txt +++ b/file.txt @@ -1 +1 @@ -Base +Main change ``` The stash captured the change in `file.txt` from `Base` → `Main change` --- ### To Restore It After Merging ```bash # Apply and keep stash git stash apply stash@{0} # OR apply and drop stash git stash pop stash@{0} ``` **`stash@{0}`** is the most recent (and only) stash entry, containing your main branch changes.
anthropic/claude-sonnet-4.6:max__json_schema PASS 100% 314 in → 110 out (77 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-sonnet-4.6:medium PASS 100% 138 in → 186 out (0 reasoning)
## Stash Reference for 'main-changes' The stash entry containing your **'main-changes'** is: ``` stash@{0} ``` ### Details | Property | Value | |----------|-------| | **Stash Reference** | `stash@{0}` | | **Branch** | `main` | | **Description** | `main-changes` | | **Change** | `Base` → `Main change` in `file.txt` | ### Verification ```bash git stash show stash@{0} ``` This is the **most recent** (and only) stash entry, stored at index `{0}`, which modified `file.txt` by replacing `Base` with `Main change` on the `main` branch.
anthropic/claude-sonnet-4.6:medium__json_schema PASS 100% 314 in → 14 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-sonnet-4.6:none PASS 100% 138 in → 196 out (0 reasoning)
## Stash Reference for 'main-changes' Based on the `git stash list` output, the stash entry containing your **'main-changes'** is: ``` stash@{0} ``` ### Details: | Field | Value | |-------|-------| | **Stash Reference** | `stash@{0}` | | **Branch** | `main` | | **Description** | `main-changes` | | **File Modified** | `file.txt` | | **Change** | `Base` → `Main change` | ### Verification: ```bash git stash show stash@{0} ``` This is the **most recent (and only)** stash entry, stored at index `{0}`, which always represents the **last stashed change** in the stack.
anthropic/claude-sonnet-4.6:none__json_schema PASS 100% 314 in → 14 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-sonnet-4.6:xhigh PASS 100% 138 in → 375 out (34 reasoning)
## Stash Reference for 'Main Change' Based on the `git stash list` output, the stash entry containing your **'main-changes'** is: ``` stash@{0} ``` ### Evidence from the output: ```bash stash@{0}: On main: main-changes ``` ### Stash Diff Confirmation: ```diff diff --git a/file.txt b/file.txt --- a/file.txt +++ b/file.txt @@ -1 +1 @@ -Base +Main change ✅ This confirms the stash contains your "Main change" ``` ### Key Details: | Property | Value | |----------|-------| | **Stash Reference** | `stash@{0}` | | **Branch** | `main` | | **Stash Message** | `main-changes` | | **File Modified** | `file.txt` | | **Change** | `Base` → `Main change` | ### To restore it: ```bash git stash pop stash@{0} # or git stash apply stash@{0} ``` > **Note:** `stash@{0}` is always the **most recent** stash entry. Since it's the only entry in the list, it is definitively the one holding your `Main change`.
anthropic/claude-sonnet-4.6:xhigh__json_schema PASS 100% 314 in → 14 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-sonnet-5:high PASS 100% 160 in → 75 out (0 reasoning)
**stash@{0}** This is the only stash entry in the list, and its details confirm it contains the "Main change" modification (changing `file.txt` content from "Base" to "Main change"), matching the description "On main: main-changes".
anthropic/claude-sonnet-5:high__json_schema PASS 100% 381 in → 16 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-sonnet-5:low PASS 100% 160 in → 8 out (0 reasoning)
stash@{0}
anthropic/claude-sonnet-5:low__json_schema PASS 100% 381 in → 16 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-sonnet-5:medium PASS 100% 160 in → 72 out (0 reasoning)
**stash@{0}** is the stash entry containing your 'main-changes'. It shows the message "On main: main-changes" and the diff confirms it contains the change from "Base" to "Main change" on `file.txt`.
anthropic/claude-sonnet-5:medium__json_schema PASS 100% 381 in → 16 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
anthropic/claude-sonnet-5:none PASS 100% 160 in → 192 out (0 reasoning)
**stash@{0}** is the stash entry that contains your 'main-changes'. This is confirmed by: - The stash list shows `stash@{0}: On main: main-changes` — matching both the branch (`main`) and the label you gave it (`main-changes`). - The diff content confirms it: the change modifies `file.txt` from `Base` to `Main change`, which corresponds to the "Main change" you described stashing before merging. Since there's only one entry in the stash list, `stash@{0}` is also the only candidate — but its message and content both align correctly with what you're looking for.
anthropic/claude-sonnet-5:none__json_schema PASS 100% 381 in → 15 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
anthropic/claude-sonnet-5:xhigh PASS 100% 160 in → 166 out (0 reasoning)
The stash reference containing your **'main-changes'** is: ``` stash@{0} ``` This is confirmed by both the stash list entry (`stash@{0}: On main: main-changes`) and the diff details, which show the change from `Base` to `Main change` on `file.txt` — matching the change you made before merging feature into main. You can inspect it again anytime with: ```bash git stash show -p stash@{0} ``` Or reapply it with: ```bash git stash apply stash@{0} ```
anthropic/claude-sonnet-5:xhigh__json_schema PASS 100% 381 in → 16 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
arcee-ai/trinity-large-thinking:high PASS 100% 106 in → 322 out (286 reasoning)
The stash entry that contains 'main-changes' is **stash@{0}**. This is indicated in the stash list with the message "main-changes" and the corresponding diff shows the change from "Base" to "Main change" in file.txt.
arcee-ai/trinity-large-thinking:low PASS 100% 106 in → 246 out (243 reasoning)
The stash entry that contains your 'main-changes' is **stash@{0}**.
arcee-ai/trinity-large-thinking:medium PASS 100% 106 in → 182 out (177 reasoning)
The stash entry that contains 'main-changes' is **stash@{0}**.
arcee-ai/trinity-large-thinking:xhigh PASS 100% 106 in → 316 out (279 reasoning)
The stash entry that contains 'main-changes' is **stash@{0}**. This is indicated in the git stash list with the message "On main: main-changes", and the diff details confirm the change from "Base" to "Main change" in file.txt.
arcee-ai/trinity-mini:high PASS 100% 106 in → 367 out (347 reasoning)
Based on theprovided information: 1. **Stash List:** `stash@{0}: On main: main-changes` 2. **Stash Details:** The diff shows the change `Base` -> `Main change` in `file.txt`. **The stash entry containing your 'main-changes' is:** **stash@{0}**
arcee-ai/trinity-mini:high__json_schema PASS 100% 106 in → 245 out (268 reasoning)
stash@{0}: On main: main-changes
JSON Schema Structured Output
(raw) { "stash": "stash@{0}: On main: main-changes" }
arcee-ai/trinity-mini:low PASS 100% 106 in → 339 out (303 reasoning)
Based on the provided information: 1. **Stash List:** `stash@{0}: On main: main-changes` 2. **Stash Details:** The diff shows the change `Base` -> `Main change` in `file.txt`. The stash entry containing your 'main-changes' is **stash@{0}**. **Stash Reference:** `stash@{0}`
arcee-ai/trinity-mini:low__json_schema PASS 100% 106 in → 232 out (269 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
arcee-ai/trinity-mini:medium PASS 100% 106 in → 409 out (303 reasoning)
Based onthe provided information: 1. **Stash List:** `stash@{0}: On main: main-changes` 2. **Stash Details:** The diff shows the change `+Main change` replacing `Base` in `file.txt`. **The stash entry containing your 'main-changes' is:** **stash@{0}** **Explanation:** * The `stash list` output explicitly shows the stash entry with the label `main-changes` (case-sensitive). * The `stash details` confirm this stash contains the change `+Main change` in `file.txt`, which matches the description of the 'main-changes' you stashed. * The reference for this specific stash entry is `stash@{0}`.
arcee-ai/trinity-mini:medium__json_schema PASS 100% 106 in → 216 out (241 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
arcee-ai/trinity-mini:xhigh PASS 100% 106 in → 350 out (251 reasoning)
Basedon the provided information, the stash entry containing your 'main-changes' is: **stash@{0}** Here's why: 1. **Stash List:** The list shows only one entry: `stash@{0}: On main: main-changes` 2. **Stash Details:** The details confirm this entry contains the changes you made (`diff --git a/file.txt b/file.txt` showing the change from `Base` to `Main change`). 3. **Reference:** The entry is explicitly named `stash@{0}`, which is the default reference for the most recent stash. Therefore, the stash reference for your 'main-changes' is **stash@{0}**.
arcee-ai/trinity-mini:xhigh__json_schema PASS 100% 106 in → 268 out (294 reasoning)
stash@{0}: On main: main-changes
JSON Schema Structured Output
(raw) { "stash": "stash@{0}: On main: main-changes" }
deepseek/deepseek-v4-flash-0731:high PASS 100% 195 in → 66 out (63 reasoning)
stash@{0}
deepseek/deepseek-v4-flash-0731:high__json_schema PASS 100% 189 in → 92 out (84 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
deepseek/deepseek-v4-flash-0731:low PASS 100% 110 in → 155 out (136 reasoning)
The stash entry containing your 'main-changes' is **stash@{0}**.
deepseek/deepseek-v4-flash-0731:low__json_schema PASS 100% 110 in → 228 out (242 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
deepseek/deepseek-v4-flash-0731:max PASS 100% 189 in → 140 out (92 reasoning)
The stash entry containing your **main-changes** is: ```bash stash@{0} ``` It contains the change to `file.txt` from `Base` to `Main change`. To apply it: ```bash git stash apply stash@{0} ```
deepseek/deepseek-v4-flash-0731:max__json_schema PASS 100% 189 in → 122 out (114 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
deepseek/deepseek-v4-flash-0731:medium PASS 100% 110 in → 236 out (213 reasoning)
The stash entry containing your "main-changes" is **`stash@{0}`** (the only entry shown, labeled "On main: main-changes").
deepseek/deepseek-v4-flash-0731:medium__json_schema PASS 100% 110 in → 144 out (142 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
deepseek/deepseek-v4-flash-0731:none PASS 100% 116 in → 6 out (0 reasoning)
stash@{0}
deepseek/deepseek-v4-flash-0731:none__json_schema PASS 100% 110 in → 12 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
deepseek/deepseek-v4-flash-0731:xhigh PASS 100% 110 in → 210 out (191 reasoning)
The stash entry containing your main changes is **stash@{0}** (as shown in the stash list with message "On main: main-changes").
deepseek/deepseek-v4-flash-0731:xhigh__json_schema PASS 100% 110 in → 146 out (143 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
deepseek/deepseek-v4-flash:high PASS 100% 110 in → 97 out (80 reasoning)
The stash entry containing your 'main-changes' is stash@{0}.
deepseek/deepseek-v4-flash:high__json_schema PASS 100% 112 in → 79 out (64 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}"}
deepseek/deepseek-v4-flash:low PASS 100% 110 in → 178 out (158 reasoning)
The stash entry containing your "main-changes" is `stash@{0}`.
deepseek/deepseek-v4-flash:low__json_schema PASS 100% 112 in → 84 out (67 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
deepseek/deepseek-v4-flash:medium PASS 100% 110 in → 127 out (115 reasoning)
The stash entry containing your "main-changes" is `stash@{0}`.
deepseek/deepseek-v4-flash:medium__json_schema PASS 100% 110 in → 70 out (57 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
deepseek/deepseek-v4-flash:none PASS 100% 110 in → 43 out (0 reasoning)
Based on the stash list and details you provided, the stash entry containing your "Main change" is: **`stash@{0}`** This is the reference to the stash entry that holds your changes.
deepseek/deepseek-v4-flash:none__json_schema PASS 100% 183 in → 12 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
deepseek/deepseek-v4-flash:xhigh PASS 100% 189 in → 233 out (235 reasoning)
The stash entry containing your "main-changes" is `stash@{0}`.
deepseek/deepseek-v4-flash:xhigh__json_schema PASS 100% 191 in → 132 out (118 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
deepseek/deepseek-v4-pro:high PASS 100% 110 in → 79 out (72 reasoning)
stash@{0}
deepseek/deepseek-v4-pro:high__json_schema PASS 100% 112 in → 254 out (239 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
deepseek/deepseek-v4-pro:low PASS 100% 110 in → 236 out (219 reasoning)
The stash entry containing your main changes is **stash@{0}**.
deepseek/deepseek-v4-pro:low__json_schema PASS 100% 307 in → 135 out (122 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
deepseek/deepseek-v4-pro:medium PASS 100% 110 in → 121 out (103 reasoning)
The stash entry that contains your 'main-changes' is: ``` stash@{0} ```
deepseek/deepseek-v4-pro:medium__json_schema PASS 100% 307 in → 100 out (87 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
deepseek/deepseek-v4-pro:none PASS 100% 110 in → 79 out (0 reasoning)
Based on the git stash list provided, the stash entry containing your 'main-changes' is: **`stash@{0}`** This is confirmed by: 1. The stash description shows: `stash@{0}: On main: main-changes` 2. The diff content shows the change from "Base" to "Main change", which matches what you stashed before merging.
deepseek/deepseek-v4-pro:none__json_schema PASS 100% 110 in → 13 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
deepseek/deepseek-v4-pro:xhigh PASS 100% 110 in → 137 out (117 reasoning)
The stash entry containing your "main-changes" is `stash@{0}`.
deepseek/deepseek-v4-pro:xhigh__json_schema PASS 100% 110 in → 12 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
google/gemini-3-flash-preview:high PASS 100% 120 in → 170 out (149 reasoning)
The stash reference that contains your 'main-changes' is: **`stash@{0}`**
google/gemini-3-flash-preview:high__json_schema PASS 100% 183 in → 256 out (248 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
google/gemini-3-flash-preview:low PASS 100% 120 in → 161 out (141 reasoning)
The stash reference containing your 'main-changes' is: **`stash@{0}`**
google/gemini-3-flash-preview:low__json_schema PASS 100% 183 in → 228 out (220 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
google/gemini-3-flash-preview:medium PASS 100% 120 in → 127 out (116 reasoning)
The stash reference is **`stash@{0}`**.
google/gemini-3-flash-preview:medium__json_schema PASS 100% 183 in → 176 out (168 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
google/gemini-3-flash-preview:xhigh PASS 100% 120 in → 172 out (154 reasoning)
The stash reference containing your 'Main change' is: **`stash@{0}`**
google/gemini-3-flash-preview:xhigh__json_schema PASS 100% 183 in → 167 out (158 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
google/gemini-3.1-flash-lite-preview:high PASS 100% 120 in → 280 out (262 reasoning)
The stash reference containing your 'main-changes' is **`stash@{0}`**.
google/gemini-3.1-flash-lite-preview:high__json_schema PASS 100% 121 in → 306 out (297 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
google/gemini-3.1-flash-lite-preview:low PASS 100% 120 in → 136 out (125 reasoning)
The stash reference is **`stash@{0}`**.
google/gemini-3.1-flash-lite-preview:low__json_schema PASS 100% 121 in → 114 out (105 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
google/gemini-3.1-flash-lite-preview:medium PASS 100% 120 in → 154 out (133 reasoning)
The stash entry that contains your 'main-changes' is: **`stash@{0}`**
google/gemini-3.1-flash-lite-preview:medium__json_schema PASS 100% 183 in → 106 out (93 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
google/gemini-3.1-flash-lite-preview:xhigh PASS 100% 120 in → 410 out (390 reasoning)
The stash entry containing your 'main-changes' is: **`stash@{0}`**
google/gemini-3.1-flash-lite-preview:xhigh__json_schema PASS 100% 121 in → 332 out (323 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
google/gemini-3.1-pro-preview:high PASS 100% 120 in → 255 out (236 reasoning)
The stash reference containing your 'main-changes' is: **stash@{0}**
google/gemini-3.1-pro-preview:high__json_schema PASS 100% 183 in → 256 out (248 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
google/gemini-3.1-pro-preview:low PASS 100% 120 in → 190 out (160 reasoning)
Based on the provided git stash list and details, the stash entry that contains your 'main-changes' is: **stash@{0}**
google/gemini-3.1-pro-preview:low__json_schema PASS 100% 183 in → 58 out (45 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
google/gemini-3.1-pro-preview:medium PASS 100% 120 in → 244 out (226 reasoning)
The stash entry that contains your 'main-changes' is **stash@{0}**.
google/gemini-3.1-pro-preview:medium__json_schema PASS 100% 183 in → 140 out (132 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
google/gemini-3.1-pro-preview:xhigh PASS 100% 120 in → 285 out (266 reasoning)
The stash entry that contains your 'main-changes' is **`stash@{0}`**.
google/gemini-3.1-pro-preview:xhigh__json_schema PASS 100% 183 in → 72 out (63 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
google/gemini-3.5-flash-lite:high PASS 100% 121 in → 213 out (194 reasoning)
The stash reference that contains your 'main-changes' is **`stash@{0}`**.
google/gemini-3.5-flash-lite:high__json_schema PASS 100% 121 in → 232 out (224 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
google/gemini-3.5-flash-lite:low PASS 100% 120 in → 5 out (0 reasoning)
`stash@{0}`
google/gemini-3.5-flash-lite:low__json_schema PASS 100% 121 in → 13 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
google/gemini-3.5-flash-lite:max PASS 100% 120 in → 211 out (192 reasoning)
The stash reference that contains your 'main-changes' is **`stash@{0}`**.
google/gemini-3.5-flash-lite:max__json_schema PASS 100% 121 in → 267 out (258 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
google/gemini-3.5-flash-lite:medium PASS 100% 121 in → 139 out (119 reasoning)
The stash reference that contains your 'main-changes' is: **stash@{0}**
google/gemini-3.5-flash-lite:medium__json_schema PASS 100% 183 in → 124 out (115 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
google/gemini-3.5-flash-lite:xhigh PASS 100% 121 in → 188 out (168 reasoning)
The stash reference that contains your 'main-changes' is: **stash@{0}**
google/gemini-3.5-flash-lite:xhigh__json_schema PASS 100% 183 in → 216 out (203 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
google/gemini-3.5-flash:high PASS 100% 120 in → 220 out (199 reasoning)
The stash reference that contains your 'main-changes' is: **`stash@{0}`**
google/gemini-3.5-flash:high__json_schema PASS 100% 183 in → 189 out (181 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
google/gemini-3.5-flash:low PASS 100% 120 in → 163 out (142 reasoning)
The stash reference that contains your 'main-changes' is: **`stash@{0}`**
google/gemini-3.5-flash:low__json_schema PASS 100% 183 in → 86 out (73 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
google/gemini-3.5-flash:medium PASS 100% 120 in → 183 out (162 reasoning)
The stash reference that contains your 'main-changes' is: **`stash@{0}`**
google/gemini-3.5-flash:medium__json_schema PASS 100% 183 in → 231 out (223 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
google/gemini-3.5-flash:xhigh PASS 100% 120 in → 235 out (215 reasoning)
The stash entry containing your 'main-changes' is: **`stash@{0}`**
google/gemini-3.5-flash:xhigh__json_schema PASS 100% 183 in → 291 out (282 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
google/gemini-3.6-flash:high PASS 100% 120 in → 171 out (153 reasoning)
The stash reference containing your 'main-changes' is: `stash@{0}`
google/gemini-3.6-flash:high__json_schema PASS 100% 121 in → 189 out (181 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
google/gemini-3.6-flash:low PASS 100% 121 in → 70 out (50 reasoning)
The stash reference containing your 'main-changes' is: **`stash@{0}`**
google/gemini-3.6-flash:low__json_schema PASS 100% 183 in → 13 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
google/gemini-3.6-flash:max PASS 100% 121 in → 218 out (197 reasoning)
The stash reference that contains your 'main-changes' is: **`stash@{0}`**
google/gemini-3.6-flash:max__json_schema PASS 100% 121 in → 157 out (149 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
google/gemini-3.6-flash:medium PASS 100% 121 in → 145 out (126 reasoning)
The stash reference that contains your 'main-changes' is: `stash@{0}`
google/gemini-3.6-flash:medium__json_schema PASS 100% 121 in → 252 out (244 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
google/gemini-3.6-flash:xhigh PASS 100% 121 in → 267 out (247 reasoning)
The stash reference containing your 'main-changes' is: **`stash@{0}`**
google/gemini-3.6-flash:xhigh__json_schema PASS 100% 121 in → 140 out (132 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
google/gemma-4-26b-a4b-it:high PASS 100% 136 in → 178 out (156 reasoning)
The stash entry that contains your 'main-changes' is: **`stash@{0}`**
google/gemma-4-26b-a4b-it:high__json_schema PASS 100% 135 in → 176 out (152 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
google/gemma-4-26b-a4b-it:low PASS 100% 136 in → 154 out (124 reasoning)
The stash reference that contains your 'main-changes' is: **`stash@{0}`**
google/gemma-4-26b-a4b-it:low__json_schema PASS 100% 136 in → 156 out (140 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
google/gemma-4-26b-a4b-it:medium PASS 100% 135 in → 181 out (157 reasoning)
The stash reference is **`stash@{0}`**.
google/gemma-4-26b-a4b-it:medium__json_schema PASS 100% 136 in → 167 out (136 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
google/gemma-4-26b-a4b-it:none PASS 100% 133 in → 22 out (0 reasoning)
The stash reference that contains your 'main-changes' is: **`stash@{0}`**
google/gemma-4-26b-a4b-it:none__json_schema PASS 100% 133 in → 13 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
google/gemma-4-26b-a4b-it:xhigh PASS 100% 136 in → 190 out (154 reasoning)
The stash entry that contains your 'main-changes' is: **`stash@{0}`**
google/gemma-4-26b-a4b-it:xhigh__json_schema PASS 100% 136 in → 160 out (132 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
google/gemma-4-31b-it:high PASS 100% 136 in → 179 out (1 reasoning)
The stash reference containing your 'main-changes' is: **`stash@{0}`**
google/gemma-4-31b-it:high__json_schema PASS 100% 136 in → 160 out (141 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
google/gemma-4-31b-it:low PASS 100% 136 in → 153 out (127 reasoning)
The stash reference is **`stash@{0}`**.
google/gemma-4-31b-it:low__json_schema PASS 100% 136 in → 172 out (145 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
google/gemma-4-31b-it:medium PASS 100% 136 in → 165 out (141 reasoning)
The stash reference is **`stash@{0}`**.
google/gemma-4-31b-it:medium__json_schema PASS 100% 135 in → 157 out (140 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
google/gemma-4-31b-it:none PASS 100% 133 in → 22 out (0 reasoning)
The stash reference that contains your 'main-changes' is: **`stash@{0}`**
google/gemma-4-31b-it:none__json_schema PASS 100% 133 in → 10 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
google/gemma-4-31b-it:xhigh PASS 100% 135 in → 157 out (121 reasoning)
The stash reference containing your 'main-changes' is: **`stash@{0}`**
google/gemma-4-31b-it:xhigh__json_schema PASS 100% 136 in → 155 out (1 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
ibm-granite/granite-4.1-8b PASS 100% 126 in → 51 out
The stash entry that contains your 'main-changes' is **stash@{0}**. This is evident from the provided Git stash list and the detailed diff showing the modification from "Base" to "Main change" in `file.txt`.
ibm-granite/granite-4.1-8b__json_schema PASS 100% 126 in → 13 out
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
inclusionai/ling-2.6-flash PASS 100% 136 in → 97 out
The stash entry that contains your "main-changes" is: ``` stash@{0} ``` This is shown in the `git stash list` output: ``` stash@{0}: On main: main-changes ``` And confirmed by the diff content, which shows the change from `Base` to `Main change` in `file.txt`. ✅ **Stash reference:** `stash@{0}`
inclusionai/ling-2.6-flash__json_schema PASS 100% 136 in → 13 out
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
liquid/lfm-2-24b-a2b PASS 100% 123 in → 62 out
The stash entry that contains your `main-changes` is: ``` stash@{0}: On main: main-changes ``` This means the changes you made (which include changing "Base" to "Main change") are stored under the `main-changes` branch of this stash.
minimax/minimax-m2.5:high PASS 100% 139 in → 159 out (163 reasoning)
The changes are in **stash@{0}**.
minimax/minimax-m2.5:high__json_schema PASS 100% 139 in → 196 out (210 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
minimax/minimax-m2.5:low PASS 100% 139 in → 197 out (199 reasoning)
The ‘main‑changes’ are in **stash@{0}**.
minimax/minimax-m2.5:low__json_schema PASS 100% 139 in → 196 out (184 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
minimax/minimax-m2.5:medium PASS 100% 139 in → 174 out (175 reasoning)
The main‑changes are in: ``` stash@{0} ```
minimax/minimax-m2.5:medium__json_schema PASS 100% 139 in → 144 out (142 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
minimax/minimax-m2.5:xhigh PASS 100% 139 in → 155 out (134 reasoning)
The stash entry that holds your **main‑changes** is: ``` stash@{0} ```
minimax/minimax-m2.5:xhigh__json_schema PASS 100% 155 in → 239 out (242 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
minimax/minimax-m2.7:high PASS 100% 141 in → 236 out (219 reasoning)
The stash containing your “main‑changes” is **stash@{0}**.
minimax/minimax-m2.7:high__json_schema PASS 100% 278 in → 282 out (271 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
minimax/minimax-m2.7:low PASS 100% 139 in → 261 out (242 reasoning)
The stash containing your **main‑changes** is `stash@{0}`.
minimax/minimax-m2.7:low__json_schema PASS 100% 278 in → 109 out (99 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
minimax/minimax-m2.7:medium PASS 100% 139 in → 358 out (332 reasoning)
The stash that contains your “main‑changes” is the top‑most stash: ``` stash@{0} ```
minimax/minimax-m2.7:medium__json_schema PASS 100% 278 in → 296 out (286 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
minimax/minimax-m2.7:xhigh PASS 100% 123 in → 135 out (90 reasoning)
The stash containing your 'main-changes' is: ``` stash@{0} ``` This is shown in the stash list where the message clearly indicates "On main: main-changes", and the diff confirms the changes add "Main change" to file.txt.
minimax/minimax-m3:high PASS 100% 274 in → 156 out (111 reasoning)
The stash entry containing your 'main-changes' is **`stash@{0}`**. This is confirmed by both the stash list (which labels it as "main-changes" on the main branch) and the diff details showing the change from "Base" to "Main change" in `file.txt`.
minimax/minimax-m3:high__json_schema PASS 100% 264 in → 12 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
minimax/minimax-m3:low PASS 100% 277 in → 127 out (66 reasoning)
The stash reference containing your 'main-changes' is: **`stash@{0}`** This is confirmed by both the stash list message (`stash@{0}: On main: main-changes`) and the diff details, which show the change from `-Base` to `+Main change` in `file.txt`.
minimax/minimax-m3:low__json_schema PASS 100% 264 in → 11 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
minimax/minimax-m3:medium PASS 100% 277 in → 138 out (49 reasoning)
The stash reference is **`stash@{0}`**. This is the only entry in the stash list, and its message `On main: main-changes` directly matches the description you stashed before merging the feature into main. The diff confirms it contains the change from "Base" to "Main change" in `file.txt`. To apply it, you can use: ```bash git stash pop stash@{0} # or git stash apply stash@{0} ```
minimax/minimax-m3:medium__json_schema PASS 100% 264 in → 11 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
minimax/minimax-m3:xhigh PASS 100% 277 in → 219 out (95 reasoning)
The stash reference containing your 'main-changes' is: **`stash@{0}`** This is confirmed by: - The stash list shows `stash@{0}: On main: main-changes` (the message matches) - The branch context is `On main`, indicating it was stashed from the main branch - The diff content shows the change from `Base` to `Main change`, which corresponds to your "Main change" work To restore these changes, you can use: - **Pop** (removes the stash after applying): `git stash pop stash@{0}` - **Apply** (keeps the stash): `git stash apply stash@{0}`
minimax/minimax-m3:xhigh__json_schema PASS 100% 264 in → 11 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
mistralai/devstral-2512 PASS 100% 119 in → 80 out
Based on the provided `git stash list` output, the stash entry containing your 'main-changes' is: **stash@{0}** This is the most recent stash entry (index 0) with the description "On main: main-changes". The stash details confirm that it contains the change from "Base" to "Main change" in file.txt.
mistralai/devstral-2512__json_schema PASS 100% 119 in → 12 out
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
mistralai/mistral-medium-3-5:high PASS 100% 131 in → 343 out (226 reasoning)
The stash entry containing the 'Main change' is clearly identified in the `git stash list` output. The description "main-changes" in the stash list corresponds directly to the user's stash of 'Main change' (noting that the message may have been saved with a hyphen instead of a space). The reference for this entry is the first (most recent) stash, indexed as `stash@{0}`. **Stash reference:** `stash@{0}`
mistralai/mistral-medium-3-5:high__json_schema PASS 100% 119 in → 193 out (181 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
mistralai/mistral-medium-3-5:low PASS 100% 131 in → 192 out (120 reasoning)
The stash entry containing your 'main-changes' is clearly identified in the provided Git stash list. The entry `stash@{0}: On main: main-changes` corresponds to the changes you made, as confirmed by the diff details showing "Main change" in file.txt. The stash reference is: **stash@{0}**
mistralai/mistral-medium-3-5:low__json_schema PASS 100% 119 in → 141 out (120 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
mistralai/mistral-medium-3-5:medium PASS 100% 131 in → 284 out (225 reasoning)
The stash entry that contains the 'Main change' is `stash@{0}`, as it matches the description "main-changes" and the diff shows the correct modification from "Base" to "Main change". The stash reference is: **stash@{0}**
mistralai/mistral-medium-3-5:medium__json_schema PASS 100% 119 in → 174 out (162 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
mistralai/mistral-medium-3-5:none PASS 100% 131 in → 76 out (0 reasoning)
The stash entry containing your 'Main change' is referenced as: ``` stash@{0} ``` This is shown in the `git stash list` output where it explicitly says: ``` stash@{0}: On main: main-changes ``` And the stash details confirm this contains the change from "Base" to "Main change" in file.txt.
mistralai/mistral-medium-3-5:none__json_schema PASS 100% 119 in → 12 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
mistralai/mistral-medium-3-5:xhigh PASS 100% 131 in → 314 out (218 reasoning)
The stash reference that contains the 'main-changes' is clearly identified in the provided Git stash list. The stash list shows a single entry, `stash@{0}`, which is described with the message 'main-changes'. Furthermore, the details of this stash confirm that it contains the change from 'Base' to 'Main change' in the file `file.txt`. Therefore, the stash reference that matches the criteria is: stash@{0}
mistralai/mistral-medium-3-5:xhigh__json_schema PASS 100% 119 in → 180 out (167 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
moonshotai/kimi-k2.6:high PASS 100% 110 in → 275 out (320 reasoning)
`stash@{0}`
moonshotai/kimi-k2.6:high__json_schema PASS 100% 300 in → 194 out (183 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
moonshotai/kimi-k2.6:low PASS 100% 110 in → 293 out (279 reasoning)
The stash reference is: **`stash@{0}`**
moonshotai/kimi-k2.6:low__json_schema PASS 100% 110 in → 12 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
moonshotai/kimi-k2.6:medium PASS 100% 110 in → 274 out (252 reasoning)
The stash entry containing your **'main-changes'** is: **stash@{0}**
moonshotai/kimi-k2.6:xhigh PASS 100% 110 in → 201 out (181 reasoning)
The stash entry containing your "main-changes" is: **`stash@{0}`**
moonshotai/kimi-k2.6:xhigh__json_schema PASS 100% 109 in → 525 out (393 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
moonshotai/kimi-k2.7-code:high PASS 100% 110 in → 192 out (123 reasoning)
The stash entry containing your **'main-changes'** is: ```text stash@{0} ``` This is the most recent stash (`stash@{0}`), and its message is "On main: main-changes". The diff confirms it contains the change to `file.txt` from `Base` → `Main change`.
moonshotai/kimi-k2.7-code:low PASS 100% 110 in → 102 out (78 reasoning)
The stash entry containing your **'main-changes'** is: ```text stash@{0} ```
moonshotai/kimi-k2.7-code:medium PASS 100% 110 in → 113 out (91 reasoning)
The stash entry that contains your `'main-changes'` is: **`stash@{0}`**
moonshotai/kimi-k2.7-code:medium__json_schema PASS 100% 110 in → 117 out (105 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
moonshotai/kimi-k2.7-code:xhigh PASS 100% 109 in → 152 out (101 reasoning)
The stash entry containing your **'main-changes'** is: ```text stash@{0} ``` This is confirmed by both the `git stash list` output and the stash diff details showing `Base` changed to `Main change`.
moonshotai/kimi-k2.7-code:xhigh__json_schema PASS 100% 110 in → 122 out (110 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
moonshotai/kimi-k3:high PASS 100% 187 in → 375 out (227 reasoning)
**`stash@{0}`** This is confirmed by two pieces of evidence: 1. **The stash list message**: `stash@{0}: On main: main-changes` — the message explicitly matches your 'main-changes' stash, created while on the `main` branch. 2. **The diff content**: The stash shows `file.txt` being changed from `Base` to `Main change`, which matches the change you described stashing. To restore it, you can use: ```bash git stash pop stash@{0} ``` or if you want to keep the stash entry intact: ```bash git stash apply stash@{0} ```
moonshotai/kimi-k3:high__json_schema PASS 100% 187 in → 463 out (262 reasoning)
**`stash@{0}`** This is the stash entry containing your 'main-changes'. You can confirm this two ways: 1. **The stash message**: `On main: main-changes` — this is the custom message you provided when stashing (e.g., via `git stash push -m "main-changes"`), and it shows the stash was created while on the `main` branch. 2. **The diff content**: The entry changes `file.txt` from `Base` to `Main change`, which matches the change you described stashing. To restore these changes after your merge, you can use: ```bash git stash pop stash@{0} # applies the stash and removes it from the list ``` or, if you want to keep the stash entry intact: ```bash git stash apply stash@{0} # applies the stash but keeps it in the list ```
moonshotai/kimi-k3:low PASS 100% 187 in → 344 out (200 reasoning)
The stash reference is **`stash@{0}`**. This is confirmed by two pieces of evidence: 1. **The stash list message**: `stash@{0}: On main: main-changes` — the stash was created on the `main` branch with the message "main-changes". 2. **The diff contents**: The stash changes `file.txt` from `Base` to `Main change`, which matches the change you stashed before merging. To restore it, you would run: ```bash git stash pop stash@{0} ``` (or simply `git stash pop`, since it's the most recent — and only — stash entry).
moonshotai/kimi-k3:low__json_schema PASS 100% 187 in → 309 out (157 reasoning)
**Stash reference: `stash@{0}`** This is the entry that contains your 'main-changes': - **Message:** `On main: main-changes` — confirms it was stashed while on the `main` branch - **Diff confirms it:** the change from `Base` → `Main change` in `file.txt` matches your stashed work Since it's the most recent stash, it sits at index `0`. To restore it after your merge, you'd use: ```bash git stash pop stash@{0} ``` (Note: `git stash pop` alone would also work here, since `stash@{0}` is the default.)
moonshotai/kimi-k3:max PASS 100% 187 in → 390 out (250 reasoning)
**`stash@{0}`** This is confirmed by two pieces of evidence: 1. **The stash list message**: `stash@{0}: On main: main-changes` — the stash was created on the `main` branch with the message "main-changes". 2. **The diff contents**: The stash changes `file.txt` from `Base` to `Main change`, which matches the change you stashed. To restore it, you would run: ```bash git stash pop stash@{0} ``` (or simply `git stash pop`, since it's the most recent stash at the top of the stack).
moonshotai/kimi-k3:max__json_schema PASS 100% 187 in → 425 out (242 reasoning)
**`stash@{0}`** This is the stash entry containing your 'main-changes': 1. **The stash message confirms it**: `stash@{0}: On main: main-changes` — it was created on the `main` branch with the message "main-changes". 2. **The diff confirms it**: The change modifies `file.txt` from `Base` to `Main change`, matching the work you stashed. To restore it, you can use: ```bash git stash pop stash@{0} # applies the stash and removes it from the list # or git stash apply stash@{0} # applies the stash but keeps it in the list ``` Since it's the most recent stash, `git stash pop` or `git stash apply` without a reference would also work.
moonshotai/kimi-k3:medium PASS 100% 187 in → 302 out (162 reasoning)
**`stash@{0}`** This is the stash entry containing your main-changes. You can confirm this from the output: - The stash list shows `stash@{0}: On main: main-changes` — it was created on the `main` branch with the message "main-changes" - The diff confirms it contains your change: `-Base` → `+Main change` in `file.txt` To restore it after your merge, you can run: ```bash git stash pop stash@{0} ``` Or simply `git stash pop`, since it's the most recent (and only) stash entry.
moonshotai/kimi-k3:medium__json_schema PASS 100% 187 in → 348 out (204 reasoning)
**`stash@{0}`** This is the stash entry containing your 'main-changes'. You can verify this from two clues in the output: 1. **The stash message**: `On main: main-changes` — matches the message you gave when stashing 2. **The diff content**: shows `-Base` being replaced with `+Main change` in `file.txt` Since it's the only stash entry, you could apply or pop it with either: ```bash git stash apply stash@{0} ``` or simply: ```bash git stash apply # defaults to the most recent stash (stash@{0}) ```
moonshotai/kimi-k3:xhigh PASS 100% 187 in → 299 out (160 reasoning)
**Stash reference: `stash@{0}`** The stash list shows a single entry: ``` stash@{0}: On main: main-changes ``` This is confirmed by the diff, which shows `stash@{0}` contains the modification to `file.txt` changing `Base` → `Main change` — exactly the change you stashed before merging. To restore it, you could run: ```bash git stash pop stash@{0} # or simply git stash pop ``` Since it's the most recent (and only) stash entry, `git stash pop` without a reference would also work.
moonshotai/kimi-k3:xhigh__json_schema PASS 100% 187 in → 327 out (138 reasoning)
**Stash reference: `stash@{0}`** This is the stash entry that contains your 'main-changes'. Here's the breakdown: - **Reference:** `stash@{0}` — the most recent (and only) stash entry - **Branch:** Created `On main` - **Message:** `main-changes` - **Content:** The diff confirms it modifies `file.txt`, changing the content from `Base` to `Main change` To restore these changes, you can use: ```bash git stash pop stash@{0} ``` Or if you want to keep the stash entry intact while applying the changes: ```bash git stash apply stash@{0} ``` Note that with only one entry in the stash list, `git stash pop` or `git stash apply` alone would also work, as they default to `stash@{0}`.
nvidia/nemotron-3-nano-30b-a3b:high PASS 100% 132 in → 151 out (100 reasoning)
The stash entry that contains the “main‑changes” commit is referenced as: ``` stash@{0} ``` (its full description shown by `git stash list` is `stash@{0}: On main: main-changes`).
nvidia/nemotron-3-nano-30b-a3b:high__json_schema PASS 100% 132 in → 176 out (153 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash" : "stash@{0}" }
nvidia/nemotron-3-nano-30b-a3b:low PASS 100% 132 in → 266 out (195 reasoning)
The stash that contains the “Main change” is **`stash@{0}`**. In the output you posted it’s listed as: ``` stash@{0}: On main: main-changes ``` and its diff shows the change from `Base` to `Main change`. So use `stash@{0}` to refer to that entry.
nvidia/nemotron-3-nano-30b-a3b:low__json_schema PASS 100% 132 in → 168 out (133 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
nvidia/nemotron-3-nano-30b-a3b:medium PASS 100% 132 in → 157 out (111 reasoning)
The stash that holds the “Main change” is referenced as: **`stash@{0}`** You can apply or view it with: ```bash git stash apply stash@{0} ```
nvidia/nemotron-3-nano-30b-a3b:medium__json_schema PASS 100% 132 in → 87 out (76 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash":"stash@{0}" }
nvidia/nemotron-3-nano-30b-a3b:none PASS 100% 132 in → 87 out (0 reasoning)
The stash that contains your **`main-changes`** work is: ``` stash@{0} ``` Because the listing shows only one stash entry (`stash@{0}`) and its header reads: ``` stash@{0}: On main: main-changes ``` That entry corresponds exactly to the stash you created with the message **`main-changes`**, and it contains the diff you posted.
nvidia/nemotron-3-nano-30b-a3b:none__json_schema PASS 100% 132 in → 14 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
nvidia/nemotron-3-nano-30b-a3b:xhigh PASS 100% 132 in → 231 out (187 reasoning)
The stash entry that contains your “main‑changes” is: **`stash@{0}`**
nvidia/nemotron-3-nano-30b-a3b:xhigh__json_schema PASS 100% 132 in → 106 out (83 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
nvidia/nemotron-3-super-120b-a12b:high PASS 100% 132 in → 129 out (125 reasoning)
stash@{0}
nvidia/nemotron-3-super-120b-a12b:high__json_schema PASS 100% 132 in → 72 out (53 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
nvidia/nemotron-3-super-120b-a12b:low PASS 100% 132 in → 106 out (93 reasoning)
stash@{0}
nvidia/nemotron-3-super-120b-a12b:low__json_schema PASS 100% 132 in → 66 out (48 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
nvidia/nemotron-3-super-120b-a12b:medium PASS 100% 132 in → 69 out (57 reasoning)
stash@{0}
nvidia/nemotron-3-super-120b-a12b:medium__json_schema PASS 100% 132 in → 386 out (347 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
nvidia/nemotron-3-super-120b-a12b:none PASS 100% 132 in → 6 out (0 reasoning)
stash@{0}
nvidia/nemotron-3-super-120b-a12b:none__json_schema PASS 100% 132 in → 14 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
nvidia/nemotron-3-super-120b-a12b:xhigh PASS 100% 132 in → 135 out (113 reasoning)
The stash entry that contains your “main‑changes” is **stash@{0}**.
nvidia/nemotron-3-super-120b-a12b:xhigh__json_schema PASS 100% 132 in → 67 out (49 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
openai/gpt-5.4-mini:high PASS 100% 110 in → 110 out (87 reasoning)
Your `main-changes` are in **`stash@{0}`**.
openai/gpt-5.4-mini:high__json_schema PASS 100% 154 in → 75 out (55 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.4-mini:low PASS 100% 110 in → 37 out (9 reasoning)
The stash entry containing your **`main-changes`** is: **`stash@{0}`**
openai/gpt-5.4-mini:low__json_schema PASS 100% 154 in → 29 out (9 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.4-mini:medium PASS 100% 110 in → 71 out (45 reasoning)
The stash entry containing your **main-changes** is: **`stash@{0}`**
openai/gpt-5.4-mini:medium__json_schema PASS 100% 154 in → 77 out (57 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.4-mini:none PASS 100% 110 in → 23 out (0 reasoning)
Your **`main-changes`** are in: **`stash@{0}`**
openai/gpt-5.4-mini:none__json_schema PASS 100% 154 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.4-mini:xhigh PASS 100% 110 in → 180 out (161 reasoning)
The stash entry is **`stash@{0}`**.
openai/gpt-5.4-mini:xhigh__json_schema PASS 100% 154 in → 100 out (80 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.4-nano:high PASS 100% 110 in → 21 out (0 reasoning)
Your **main-changes** are in: **`stash@{0}`**
openai/gpt-5.4-nano:high__json_schema PASS 100% 154 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.4-nano:low PASS 100% 110 in → 39 out (0 reasoning)
Your **`main-changes`** are in: **`stash@{0}`** (shown as `stash@{0}: On main: main-changes`).
openai/gpt-5.4-nano:low__json_schema PASS 100% 154 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.4-nano:medium PASS 100% 110 in → 23 out (0 reasoning)
Your **`main-changes`** are in **`stash@{0}`**.
openai/gpt-5.4-nano:medium__json_schema PASS 100% 154 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.4-nano:none PASS 100% 110 in → 27 out (0 reasoning)
The stash entry that contains your **“main-changes”** is: **`stash@{0}`**
openai/gpt-5.4-nano:none__json_schema PASS 100% 154 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.4-nano:xhigh PASS 100% 110 in → 68 out (39 reasoning)
The stash entry that contains your **“main-changes”** is: **`stash@{0}`**
openai/gpt-5.4-nano:xhigh__json_schema PASS 100% 154 in → 68 out (48 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.4:high PASS 100% 110 in → 70 out (53 reasoning)
The stash entry is `stash@{0}`.
openai/gpt-5.4:high__json_schema PASS 100% 154 in → 45 out (25 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.4:low PASS 100% 110 in → 15 out (0 reasoning)
The stash entry is: `stash@{0}`
openai/gpt-5.4:low__json_schema PASS 100% 154 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.4:medium PASS 100% 110 in → 9 out (0 reasoning)
stash@{0}
openai/gpt-5.4:medium__json_schema PASS 100% 154 in → 47 out (27 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.4:none PASS 100% 110 in → 15 out (0 reasoning)
The stash entry is: `stash@{0}`
openai/gpt-5.4:none__json_schema PASS 100% 154 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.4:xhigh PASS 100% 110 in → 177 out (160 reasoning)
The stash entry is `stash@{0}`.
openai/gpt-5.4:xhigh__json_schema PASS 100% 154 in → 83 out (63 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.5:high PASS 100% 110 in → 77 out (66 reasoning)
stash@{0}
openai/gpt-5.5:high__json_schema PASS 100% 154 in → 90 out (70 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.5:low PASS 100% 110 in → 10 out (0 reasoning)
`stash@{0}`
openai/gpt-5.5:low__json_schema PASS 100% 154 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.5:medium PASS 100% 110 in → 36 out (24 reasoning)
`stash@{0}`
openai/gpt-5.5:medium__json_schema PASS 100% 154 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.5:none PASS 100% 110 in → 10 out (0 reasoning)
`stash@{0}`
openai/gpt-5.5:none__json_schema PASS 100% 154 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.5:xhigh PASS 100% 110 in → 104 out (93 reasoning)
stash@{0}
openai/gpt-5.5:xhigh__json_schema PASS 100% 154 in → 92 out (72 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.6-luna:high PASS 100% 110 in → 9 out (0 reasoning)
stash@{0}
openai/gpt-5.6-luna:high__json_schema PASS 100% 154 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.6-luna:low PASS 100% 110 in → 9 out (0 reasoning)
stash@{0}
openai/gpt-5.6-luna:low__json_schema PASS 100% 154 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.6-luna:max PASS 100% 110 in → 103 out (91 reasoning)
`stash@{0}`
openai/gpt-5.6-luna:max__json_schema PASS 100% 154 in → 82 out (62 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.6-luna:medium PASS 100% 110 in → 9 out (0 reasoning)
stash@{0}
openai/gpt-5.6-luna:medium__json_schema PASS 100% 154 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.6-luna:none PASS 100% 110 in → 9 out (0 reasoning)
stash@{0}
openai/gpt-5.6-luna:none__json_schema PASS 100% 154 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.6-luna:xhigh PASS 100% 110 in → 46 out (34 reasoning)
`stash@{0}`
openai/gpt-5.6-luna:xhigh__json_schema PASS 100% 154 in → 55 out (35 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.6-sol:high PASS 100% 110 in → 10 out (0 reasoning)
`stash@{0}`
openai/gpt-5.6-sol:high__json_schema PASS 100% 154 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.6-sol:low PASS 100% 110 in → 10 out (0 reasoning)
`stash@{0}`
openai/gpt-5.6-sol:low__json_schema PASS 100% 154 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.6-sol:max PASS 100% 110 in → 9 out (0 reasoning)
stash@{0}
openai/gpt-5.6-sol:max__json_schema PASS 100% 154 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.6-sol:medium PASS 100% 110 in → 9 out (0 reasoning)
stash@{0}
openai/gpt-5.6-sol:medium__json_schema PASS 100% 154 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.6-sol:none PASS 100% 110 in → 10 out (0 reasoning)
`stash@{0}`
openai/gpt-5.6-sol:none__json_schema PASS 100% 154 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.6-sol:xhigh PASS 100% 110 in → 10 out (0 reasoning)
`stash@{0}`
openai/gpt-5.6-sol:xhigh__json_schema PASS 100% 154 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.6-terra:high PASS 100% 110 in → 9 out (0 reasoning)
stash@{0}
openai/gpt-5.6-terra:high__json_schema PASS 100% 154 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.6-terra:low PASS 100% 110 in → 9 out (0 reasoning)
stash@{0}
openai/gpt-5.6-terra:low__json_schema PASS 100% 154 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.6-terra:max PASS 100% 110 in → 9 out (0 reasoning)
stash@{0}
openai/gpt-5.6-terra:max__json_schema PASS 100% 154 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.6-terra:medium PASS 100% 110 in → 9 out (0 reasoning)
stash@{0}
openai/gpt-5.6-terra:medium__json_schema PASS 100% 154 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.6-terra:none PASS 100% 110 in → 9 out (0 reasoning)
stash@{0}
openai/gpt-5.6-terra:none__json_schema PASS 100% 154 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-5.6-terra:xhigh PASS 100% 110 in → 9 out (0 reasoning)
stash@{0}
openai/gpt-5.6-terra:xhigh__json_schema PASS 100% 154 in → 18 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-oss-120b:high PASS 100% 174 in → 225 out (201 reasoning)
The stash entry you’re looking for is: **`stash@{0}`**.
openai/gpt-oss-120b:high__json_schema PASS 100% 171 in → 186 out (190 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-oss-120b:low__json_schema PASS 100% 158 in → 34 out (12 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash" : "stash@{0}" }
openai/gpt-oss-120b:medium PASS 100% 158 in → 140 out (82 reasoning)
The `main‑changes` are stored in **stash @{0}**. Use this reference when you want to apply or inspect that stash (e.g., `git stash pop stash@{0}` or `git stash show -p stash@{0}`).
openai/gpt-oss-120b:medium__json_schema PASS 100% 158 in → 96 out (78 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
openai/gpt-oss-120b:xhigh PASS 100% 171 in → 360 out (338 reasoning)
The stash entry you’re looking for is: **`stash@{0}`**
openai/gpt-oss-120b:xhigh__json_schema PASS 100% 171 in → 267 out (248 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
openai/gpt-oss-20b:high PASS 100% 170 in → 258 out (219 reasoning)
The stash entry that contains your “main‑changes” is: ``` stash@{0} ``` This is the most recent stash entry on the main branch.
openai/gpt-oss-20b:high__json_schema PASS 100% 173 in → 239 out (229 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
openai/gpt-oss-20b:low PASS 100% 158 in → 34 out (10 reasoning)
`stash@{0}` contains the “main‑changes”.
openai/gpt-oss-20b:low__json_schema PASS 100% 171 in → 42 out (23 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
openai/gpt-oss-20b:medium PASS 100% 173 in → 112 out (86 reasoning)
The stash entry that contains the “main‑change” is: ``` stash@{0} ```
openai/gpt-oss-20b:medium__json_schema PASS 100% 173 in → 54 out (36 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
openai/gpt-oss-20b:xhigh PASS 100% 169 in → 250 out (202 reasoning)
The stash entry that contains your `main-changes` is: ``` stash@{0} ``` > It appears as the first (and only) entry in your `git stash list`.
openai/gpt-oss-20b:xhigh__json_schema PASS 100% 169 in → 182 out (181 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
poolside/laguna-m.1:high PASS 100% 124 in → 239 out (173 reasoning)
The stash entry containing your 'main-changes' is: **`stash@{0}`** This is confirmed by the output of `git stash list` and the diff details provided, which explicitly reference "On main: main-changes" and show the modified content ("Main change") in `file.txt`.
poolside/laguna-m.1:high__json_schema PASS 100% 124 in → 198 out (187 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
poolside/laguna-m.1:low PASS 100% 124 in → 329 out (221 reasoning)
The stash entry containing your 'Main change' is **`stash@{0}`**. ### Details: - **Stash reference**: `stash@{0}` - **Stash name**: `On main: main-changes` - **Change summary**: ```diff -Base +Main change ``` This stash was created on the `main` branch and matches the description of the changes you mentioned. Use `git stash apply stash@{0}` to reapply these changes.
poolside/laguna-m.1:low__json_schema PASS 100% 124 in → 178 out (167 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
poolside/laguna-m.1:medium PASS 100% 124 in → 432 out (358 reasoning)
The stash entry that contains your 'main-changes' is: **stash@{0}** This is confirmed by both the stash list message ("main-changes") and the diff showing the replacement of "Base" with "Main change" in `file.txt`. Since this is the only stash listed, it must be the one you created before merging.
poolside/laguna-m.1:medium__json_schema PASS 100% 124 in → 271 out (259 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
poolside/laguna-m.1:none PASS 100% 124 in → 91 out (0 reasoning)
The stash reference for your "main-changes" is **stash@{0}**. This is determined because: 1. The `git stash list` explicitly shows `stash@{0}: On main: main-changes` with the branch name "main" 2. The diff in the stash details shows the change from "Base" to "Main change" which matches your description of stashing the main branch changes before merging a feature branch
poolside/laguna-m.1:none__json_schema PASS 100% 124 in → 14 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
poolside/laguna-m.1:xhigh PASS 100% 124 in → 370 out (281 reasoning)
The stash entry containing your 'main-changes' is: ``` stash@{0} ``` This is confirmed by: 1. The stash list showing `stash@{0}: On main: main-changes` 2. The diff content showing the specific changes from "Base" to "Main change" in `file.txt` You can apply these changes using: `git stash apply stash@{0}`
poolside/laguna-m.1:xhigh__json_schema PASS 100% 124 in → 241 out (230 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
poolside/laguna-xs-2.1:high PASS 100% 124 in → 238 out (165 reasoning)
The stash entry containing your 'main-changes' is: **`stash@{0}`** This is confirmed by the `git stash list` output: ``` stash@{0}: On main: main-changes ``` The diff in the stash details also shows the changes labeled as "Main change" in `file.txt`, aligning with your description.
poolside/laguna-xs-2.1:high__json_schema PASS 100% 124 in → 224 out (213 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
poolside/laguna-xs-2.1:low PASS 100% 124 in → 234 out (142 reasoning)
The stash entry that contains your 'main-changes' is: ``` stash@{0} ``` This is confirmed by: 1. The stash list entry `stash@{0}: On main: main-changes` which explicitly mentions "main-changes" in the message. 2. The diff details showing the changes from `Base` to `Main change` in `file.txt`, which aligns with the context of "Main change" modifications.
poolside/laguna-xs-2.1:low__json_schema PASS 100% 124 in → 278 out (263 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
poolside/laguna-xs-2.1:medium PASS 100% 124 in → 402 out (294 reasoning)
The stash entry containing your 'main-changes' is: **`stash@{0}`** ### Reasoning: - The stash list explicitly shows `stash@{0}: On main: main-changes`, indicating it was stashed while on the `main` branch and contains the `main-changes`. - The diff in the stash details matches the "Main change" you described (changing `Base` to `Main change`), confirming it is the correct entry. - There is only one stash entry listed, so no ambiguity exists.
poolside/laguna-xs-2.1:medium__json_schema PASS 100% 124 in → 178 out (167 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
poolside/laguna-xs-2.1:none PASS 100% 124 in → 132 out (0 reasoning)
The stash entry that contains your 'main-changes' is: ``` stash@{0} ``` From the `git stash list` output: ``` stash@{0}: On main: main-changes ``` This confirms that `stash@{0}` is the correct stash reference holding the 'main-changes'. </think>The stash entry that contains your 'main-changes' is: ``` stash@{0} ``` From the `git stash list` output: ``` stash@{0}: On main: main-changes ``` This confirms that `stash@{0}` is the correct stash reference holding the 'main-changes'.
poolside/laguna-xs-2.1:none__json_schema PASS 100% 124 in → 14 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
poolside/laguna-xs-2.1:xhigh PASS 100% 124 in → 296 out (204 reasoning)
The stash entry that contains your 'main-changes' is: **stash@{0}** ### Explanation: - The stash list shows `stash@{0}: On main: main-changes`, which directly references your changes. - The diff in `stash@{0}` confirms the "Main change" was made to `file.txt`, matching the stashed content you described. Use `git stash apply stash@{0}` to restore it.
poolside/laguna-xs-2.1:xhigh__json_schema PASS 100% 124 in → 309 out (297 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
poolside/laguna-xs.2:high PASS 100% 161 in → 193 out (132 reasoning)
Based on the git stash list you provided, the stash entry containing your **'main-changes'** is: **`stash@{0}`** This is confirmed by both the stash message (`On main: main-changes`) and the diff showing the change from "Base" to "Main change".
poolside/laguna-xs.2:high__json_schema PASS 100% 161 in → 137 out (126 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
poolside/laguna-xs.2:low PASS 100% 161 in → 181 out (113 reasoning)
Based on the git stash list you provided, the stash entry containing your 'main-changes' is: **stash@{0}** This is confirmed by both the stash list description ("stash@{0}: On main: main-changes") and the diff content, which shows the exact "Main change" modification you mentioned.
poolside/laguna-xs.2:low__json_schema PASS 100% 161 in → 170 out (159 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
poolside/laguna-xs.2:medium PASS 100% 161 in → 192 out (117 reasoning)
Based on the git stash list you provided, the stash entry containing your 'main-changes' is: **stash@{0}** This is confirmed by the stash list output which shows: ``` stash@{0}: On main: main-changes ``` The diff details also confirm this contains your "Main change" modification to `file.txt`.
poolside/laguna-xs.2:medium__json_schema PASS 100% 161 in → 148 out (136 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
poolside/laguna-xs.2:none PASS 100% 161 in → 107 out (0 reasoning)
Looking at the git stash list you've provided, I can see there's only one stash entry: **stash@{0}** contains your 'main-changes' with the diff showing: - Original content: "Base" - Changed to: "Main change" So the stash reference you're looking for is **stash@{0}**. This single stash entry matches exactly what you stashed before merging the feature into main, showing the transformation from "Base" to "Main change" in file.txt.
poolside/laguna-xs.2:none__json_schema PASS 100% 161 in → 9 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
poolside/laguna-xs.2:xhigh PASS 100% 161 in → 191 out (124 reasoning)
Based on the git stash list you provided, the stash entry containing your 'main-changes' is: **stash@{0}** This is confirmed by both the stash list header showing `stash@{0}: On main: main-changes` and the stash details showing the diff with your "Main change" modification.
poolside/laguna-xs.2:xhigh__json_schema PASS 100% 161 in → 138 out (127 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
qwen/qwen3.6-27b:high PASS 100% 124 in → 381 out (369 reasoning)
`stash@{0}`
qwen/qwen3.6-27b:high__json_schema PASS 100% 124 in → 449 out (439 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
qwen/qwen3.6-27b:low PASS 100% 124 in → 665 out (616 reasoning)
The stash reference containing your 'main-changes' is: `stash@{0}`
qwen/qwen3.6-27b:low__json_schema PASS 100% 124 in → 645 out (617 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
qwen/qwen3.6-27b:medium PASS 100% 124 in → 325 out (313 reasoning)
`stash@{0}`
qwen/qwen3.6-27b:medium__json_schema PASS 100% 124 in → 691 out (662 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
qwen/qwen3.6-27b:none PASS 100% 126 in → 125 out (0 reasoning)
The stash entry containing your 'main-changes' is: **`stash@{0}`** ### Explanation: - Your `git stash list` shows only one entry: `stash@{0}: On main: main-changes`. - The stash message explicitly states **"main-changes"**, which matches your stashed work before merging feature into main. - The diff confirms that `stash@{0}` contains the change from `"Base"` to `"Main change"` in `file.txt`. Thus, the reference to your stashed changes is **`stash@{0}`**.
qwen/qwen3.6-27b:none__json_schema PASS 100% 126 in → 15 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
qwen/qwen3.6-27b:xhigh PASS 100% 124 in → 811 out (1 reasoning)
`stash@{0}`
qwen/qwen3.6-27b:xhigh__json_schema PASS 100% 126 in → 15 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
qwen/qwen3.6-35b-a3b:high PASS 100% 124 in → 680 out (664 reasoning)
The stash reference is: `stash@{0}`
qwen/qwen3.6-35b-a3b:high__json_schema PASS 100% 124 in → 298 out (266 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
qwen/qwen3.6-35b-a3b:low PASS 100% 124 in → 864 out (853 reasoning)
`stash@{0}`
qwen/qwen3.6-35b-a3b:low__json_schema PASS 100% 124 in → 698 out (671 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
qwen/qwen3.6-35b-a3b:medium PASS 100% 124 in → 325 out (303 reasoning)
The stash reference is: `stash@{0}`
qwen/qwen3.6-35b-a3b:medium__json_schema PASS 100% 124 in → 344 out (321 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
qwen/qwen3.6-35b-a3b:none PASS 100% 126 in → 23 out (0 reasoning)
The stash entry that contains your 'main-changes' is: **`stash@{0}`**
qwen/qwen3.6-35b-a3b:none__json_schema PASS 100% 126 in → 11 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
qwen/qwen3.6-35b-a3b:xhigh PASS 100% 124 in → 570 out (548 reasoning)
The stash reference containing your changes is: **`stash@{0}`**
qwen/qwen3.6-35b-a3b:xhigh__json_schema PASS 100% 124 in → 878 out (828 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
qwen/qwen3.6-flash:high PASS 100% 124 in → 311 out (300 reasoning)
`stash@{0}`
qwen/qwen3.6-flash:low PASS 100% 124 in → 368 out (342 reasoning)
The stash reference containing your "main-changes" is: **`stash@{0}`**
qwen/qwen3.6-flash:medium PASS 100% 124 in → 439 out (428 reasoning)
`stash@{0}`
qwen/qwen3.6-flash:none PASS 100% 126 in → 84 out (0 reasoning)
The stash entry that contains your 'main-changes' is **`stash@{0}`**. **Reasoning:** - The `git stash list` output explicitly shows: `stash@{0}: On main: main-changes`. - The stash details confirm the content change from "Base" to "Main change" in `file.txt`, matching the description of the 'Main change' stash.
qwen/qwen3.6-flash:xhigh PASS 100% 124 in → 312 out (289 reasoning)
The stash reference containing your main-changes is: **`stash@{0}`**
qwen/qwen3.7-flash:high PASS 100% 124 in → 373 out (347 reasoning)
The stash reference containing your 'main-changes' is: **`stash@{0}`**
qwen/qwen3.7-flash:low PASS 100% 124 in → 384 out (358 reasoning)
The stash entry containing your 'main-changes' is: **`stash@{0}`**
qwen/qwen3.7-flash:max PASS 100% 124 in → 355 out (330 reasoning)
The stash reference containing your 'main-changes' is: **`stash@{0}`**
qwen/qwen3.7-flash:medium PASS 100% 124 in → 390 out (369 reasoning)
The stash reference containing your changes is: **`stash@{0}`**
qwen/qwen3.7-flash:none PASS 100% 126 in → 22 out (0 reasoning)
The stash entry that contains your 'main-changes' is: **`stash@{0}`**
qwen/qwen3.7-flash:xhigh PASS 100% 124 in → 331 out (307 reasoning)
The stash entry containing your 'main-changes' is **`stash@{0}`**.
qwen/qwen3.7-max:high PASS 100% 124 in → 123 out (87 reasoning)
Based on the provided git stash list and details, the stash entry that contains your 'main-changes' is: **stash@{0}**
qwen/qwen3.7-max:low PASS 100% 124 in → 112 out (87 reasoning)
The stash reference that contains your 'main-changes' is **`stash@{0}`**.
qwen/qwen3.7-max:medium PASS 100% 124 in → 123 out (87 reasoning)
Based on the provided git stash list and details, the stash entry that contains your 'main-changes' is: **stash@{0}**
qwen/qwen3.7-max:none PASS 100% 126 in → 56 out (0 reasoning)
The stash entry containing your 'main-changes' is: **`stash@{0}`** This is confirmed by both the stash list label (`On main: main-changes`) and the diff content showing the `+Main change` modification in `file.txt`.
qwen/qwen3.7-max:xhigh PASS 100% 124 in → 161 out (125 reasoning)
Based on the provided git stash list and details, the stash entry that contains your 'main-changes' is: **stash@{0}**
qwen/qwen3.7-plus:high PASS 100% 124 in → 434 out (424 reasoning)
stash@{0}
qwen/qwen3.7-plus:low PASS 100% 124 in → 137 out (112 reasoning)
The stash reference that contains your 'main-changes' is: `stash@{0}`
qwen/qwen3.7-plus:medium PASS 100% 124 in → 399 out (374 reasoning)
The stash reference that contains your 'main-changes' is **`stash@{0}`**.
qwen/qwen3.7-plus:none PASS 100% 126 in → 44 out (0 reasoning)
Based on the provided Git stash list, the entry containing 'main-changes' is the most recent one, which is indexed at 0. The stash reference is: **`stash@{0}`**
qwen/qwen3.7-plus:xhigh PASS 100% 124 in → 543 out (533 reasoning)
stash@{0}
tencent/hy3:high PASS 100% 119 in → 241 out (216 reasoning)
The stash entry that contains your 'main-changes' is: **`stash@{0}`**
tencent/hy3:high__json_schema PASS 100% 119 in → 305 out (279 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
tencent/hy3:low PASS 100% 119 in → 332 out (280 reasoning)
The stash entry containing your `main-changes` is: **`stash@{0}`**
tencent/hy3:low__json_schema PASS 100% 119 in → 273 out (247 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
tencent/hy3:medium PASS 100% 119 in → 381 out (348 reasoning)
The stash entry containing your **'main-changes'** (the "Main change" modification) is: **`stash@{0}`**
tencent/hy3:medium__json_schema PASS 100% 119 in → 297 out (260 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
tencent/hy3:none PASS 100% 122 in → 71 out (0 reasoning)
The stash entry that contains your **'Main change'** (stashed under the message **main-changes**) is: **`stash@{0}`** This is confirmed by both the `git stash list` output and the stash details showing the change from `Base` to `Main change` in `file.txt`.
tencent/hy3:none__json_schema PASS 100% 122 in → 14 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
tencent/hy3:xhigh PASS 100% 119 in → 274 out (247 reasoning)
The stash entry that contains your 'main-changes' is referenced as: **`stash@{0}`**
thinkingmachines/inkling-small:high PASS 100% 119 in → 164 out (113 reasoning)
The stash entry is **stash@{0}**. Reference: `stash@{0}` — listed as `On main: main-changes`, and its diff shows `+Main change` in `file.txt`.
thinkingmachines/inkling-small:high__json_schema PASS 100% 119 in → 139 out (122 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
thinkingmachines/inkling-small:low PASS 100% 119 in → 72 out (12 reasoning)
The 'main-changes' are in **stash@{0}**. Reference: `stash@{0}` (or `stash@{0}` — the top entry labeled "On main: main-changes" with the `+Main change` diff).
thinkingmachines/inkling-small:low__json_schema PASS 100% 119 in → 29 out (12 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
thinkingmachines/inkling-small:max PASS 100% 119 in → 177 out (123 reasoning)
The entry is **`stash@{0}`**. It is shown in the list as `stash@{0}: On main: main-changes`, and its diff contains the `+Main change` modification to `file.txt`.
thinkingmachines/inkling-small:max__json_schema PASS 100% 119 in → 56 out (40 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
thinkingmachines/inkling-small:medium PASS 100% 119 in → 170 out (127 reasoning)
The stash entry containing your `main-changes` is: **`stash@{0}`** (Full reference: `stash@{0}: On main: main-changes`)
thinkingmachines/inkling-small:medium__json_schema PASS 100% 119 in → 113 out (97 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
thinkingmachines/inkling-small:none PASS 100% 117 in → 55 out (0 reasoning)
Your `main-changes` are in **`stash@{0}`**. The stash list shows it explicitly: `stash@{0}: On main: main-changes`, and the diff confirms the change from `Base` to `Main change`.
thinkingmachines/inkling-small:xhigh PASS 100% 119 in → 158 out (123 reasoning)
The stash entry is **stash@{0}**. Reference: `stash@{0}` (message: "On main: main-changes", containing the `+Main change` diff).
thinkingmachines/inkling-small:xhigh__json_schema PASS 100% 119 in → 117 out (100 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
thinkingmachines/inkling:high PASS 100% 119 in → 1,696 out (1,626 reasoning)
The entry is **`stash@{0}`**. Even though the stash message reads `main-changes`, that is the one listed, and its diff shows the `Main change` content (replacing `Base`). So your stashed main-branch work is at: **`stash@{0}`**
thinkingmachines/inkling:high__json_schema PASS 100% 119 in → 435 out (419 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
thinkingmachines/inkling:low PASS 100% 119 in → 110 out (47 reasoning)
The entry is **stash@{0}**. `git stash list` shows: ``` stash@{0}: On main: main-changes ``` And its diff contains the "Main change" modification. So the reference is `stash@{0}`.
thinkingmachines/inkling:max PASS 100% 119 in → 261 out (182 reasoning)
The `main-changes` stash is **`stash@{0}`**. - `git stash list` shows: `stash@{0}: On main: main-changes` - The diff for `stash@{0}` contains the `"Main change"` modification to `file.txt`. So the reference is **`stash@{0}`**.
thinkingmachines/inkling:medium PASS 100% 119 in → 100 out (64 reasoning)
The stash entry is **`stash@{0}`** (referenced as `stash@{0}: On main: main-changes`).
thinkingmachines/inkling:medium__json_schema PASS 100% 119 in → 116 out (100 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
thinkingmachines/inkling:none PASS 100% 119 in → 28 out (0 reasoning)
The **main-changes** are in **`stash@{0}`** (reference: `stash@{0}`).<|end_message|>
thinkingmachines/inkling:xhigh PASS 100% 119 in → 564 out (506 reasoning)
The stash named **main-changes** is at: **`stash@{0}`** (The list shows `stash@{0}: On main: main-changes`, and its diff contains the "Main change" modification to `file.txt`.)
thinkingmachines/inkling:xhigh__json_schema PASS 100% 119 in → 222 out (206 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
x-ai/grok-4.3:high PASS 100% 285 in → 219 out (192 reasoning)
**stash@{0}** This is the stash entry containing your "main-changes" (with the "Main change" diff).
x-ai/grok-4.3:high__json_schema PASS 100% 348 in → 254 out (246 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
x-ai/grok-4.3:low PASS 100% 291 in → 324 out (248 reasoning)
The provided `git stash list` output contains only a single entry, and its message matches the expected "main-changes" (case/spelling variations notwithstanding). The corresponding `git stash show` output likewise contains the exact diff "+Main change", confirming it is the correct stash. Thus the required reference is simply `stash@{0}`. Final answer: stash@{0}
x-ai/grok-4.3:low__json_schema PASS 100% 354 in → 144 out (136 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
x-ai/grok-4.3:max PASS 100% 285 in → 119 out (109 reasoning)
The stash reference is **`stash@{0}`**.
x-ai/grok-4.3:max__json_schema PASS 100% 348 in → 304 out (296 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
x-ai/grok-4.3:medium PASS 100% 291 in → 292 out (261 reasoning)
The only stash present is `stash@{0}`, which matches the provided details for the `main-changes` content. Final answer: stash@{0}
x-ai/grok-4.3:medium__json_schema PASS 100% 354 in → 130 out (122 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
x-ai/grok-4.3:none PASS 100% 283 in → 13 out (0 reasoning)
**stash@{0}** contains your "main-changes".
x-ai/grok-4.3:none__json_schema PASS 100% 346 in → 11 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
x-ai/grok-4.3:xhigh PASS 100% 285 in → 191 out (181 reasoning)
The stash reference is **`stash@{0}`**.
x-ai/grok-4.3:xhigh__json_schema PASS 100% 348 in → 237 out (229 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
x-ai/grok-4.5:high PASS 100% 312 in → 329 out (250 reasoning)
**stash@{0}** The provided `git stash list` shows only one entry: `stash@{0}: On main: main-changes` Its diff contents match the stashed “Main change” (replacing “Base” with “Main change” in `file.txt`). No other stash entries are listed, so this is the reference that contains your main-changes.
x-ai/grok-4.5:high__json_schema PASS 100% 386 in → 211 out (202 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
x-ai/grok-4.5:low PASS 100% 312 in → 239 out (169 reasoning)
**stash@{0}** The provided `git stash list` shows only one entry: - `stash@{0}: On main: main-changes` Its diff confirms it holds the “Main change” patch (replacing “Base” with “Main change” in `file.txt`). That is the stash you created before the merge.
x-ai/grok-4.5:low__json_schema PASS 100% 386 in → 159 out (150 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
x-ai/grok-4.5:max PASS 100% 312 in → 342 out (293 reasoning)
**stash@{0}** The provided `git stash list` shows only this entry (`stash@{0}: On main: main-changes`), and the stash details confirm it holds the diff that replaces "Base" with "Main change".
x-ai/grok-4.5:max__json_schema PASS 100% 386 in → 258 out (249 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
x-ai/grok-4.5:medium PASS 100% 312 in → 248 out (204 reasoning)
**stash@{0}** The stash list shows only one entry, `stash@{0}: On main: main-changes`, and its diff confirms it holds the change from `Base` to `Main change`.
x-ai/grok-4.5:medium__json_schema PASS 100% 386 in → 193 out (184 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
x-ai/grok-4.5:xhigh PASS 100% 312 in → 302 out (254 reasoning)
**stash@{0}** The provided `git stash list` shows a single entry: - `stash@{0}: On main: main-changes` Its diff confirms it holds the change from `Base` → `Main change`.
x-ai/grok-4.5:xhigh__json_schema PASS 100% 386 in → 171 out (162 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash":"stash@{0}"}
z-ai/glm-4.7-flash:high PASS 100% 110 in → 494 out (425 reasoning)
The stash entry containing your changes is: **`stash@{0}`** **Verification:** * **From the list:** `stash@{0}: On main: main-changes` * **From the details:** Shows the modification of `file.txt` from `Base` to `Main change`.
z-ai/glm-4.7-flash:high__json_schema PASS 100% 110 in → 398 out (369 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
z-ai/glm-4.7-flash:low PASS 100% 110 in → 288 out (270 reasoning)
The stash reference is: **stash@{0}**
z-ai/glm-4.7-flash:low__json_schema PASS 100% 110 in → 346 out (341 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
z-ai/glm-4.7-flash:medium PASS 100% 110 in → 371 out (343 reasoning)
The stash reference is **`stash@{0}`**.
z-ai/glm-4.7-flash:medium__json_schema PASS 100% 110 in → 265 out (244 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
z-ai/glm-4.7-flash:none PASS 100% 110 in → 19 out (0 reasoning)
The stash reference containing your 'main-changes' is: **stash@{0}**
z-ai/glm-4.7-flash:none__json_schema PASS 100% 110 in → 13 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
z-ai/glm-4.7-flash:xhigh PASS 100% 110 in → 266 out (251 reasoning)
The stash reference is **stash@{0}**.
z-ai/glm-4.7-flash:xhigh__json_schema PASS 100% 110 in → 342 out (337 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
z-ai/glm-5.2:high PASS 100% 117 in → 247 out (226 reasoning)
The stash entry containing your 'main-changes' is: **stash@{0}**
z-ai/glm-5.2:high__json_schema PASS 100% 117 in → 219 out (204 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
z-ai/glm-5.2:low PASS 100% 117 in → 194 out (174 reasoning)
The stash entry containing your 'main-changes' is: `stash@{0}`
z-ai/glm-5.2:low__json_schema PASS 100% 117 in → 11 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
z-ai/glm-5.2:medium PASS 100% 117 in → 202 out (163 reasoning)
The stash entry containing your 'main-changes' is: **stash@{0}**
z-ai/glm-5.2:medium__json_schema PASS 100% 119 in → 176 out (163 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
z-ai/glm-5.2:none PASS 100% 111 in → 20 out (0 reasoning)
The stash entry containing your 'main-changes' is: **stash@{0}**
z-ai/glm-5.2:none__json_schema PASS 100% 295 in → 11 out (0 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) {"stash": "stash@{0}"}
z-ai/glm-5.2:xhigh PASS 100% 117 in → 268 out (264 reasoning)
stash@{0}
z-ai/glm-5.2:xhigh__json_schema PASS 100% 117 in → 371 out (331 reasoning)
stash@{0}
JSON Schema Structured Output
(raw) { "stash": "stash@{0}" }
Invalid JSON. Output:
JSON Schema Structured Output
Structured Output Error
Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)
Failure: Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)
Invalid JSON. Output:
JSON Schema Structured Output
Structured Output Error
Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)
Failure: Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)
Invalid JSON. Output:
JSON Schema Structured Output
Structured Output Error
Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)
Failure: Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)
Invalid JSON. Output:
JSON Schema Structured Output
Structured Output Error
Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)
Failure: Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)
Invalid JSON. Output: The stash entry that contains your `main-changes` is: ``` stash@{0}: On main: main-changes ``` This means the changes you made (the line change from "Base" to "Main change") are stored under the `main-changes` branch in your stash.
JSON Schema Structured Output
Structured Output Error
Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)
Failure: Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)
Invalid JSON. Output:
JSON Schema Structured Output
Structured Output Error
Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)
Failure: Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)
moonshotai/kimi-k2.6:medium__json_schema FAIL 0% 109 in → 1,427 out (167 reasoning)
@{0}
JSON Schema Structured Output
(raw) { "stash": "@{0}" }
Failure: Expected stash reference 'stash@{0}'
Invalid JSON. Output:
JSON Schema Structured Output
Structured Output Error
Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)
Failure: Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)
Invalid JSON. Output:
JSON Schema Structured Output
Structured Output Error
Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)
Failure: Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)
openai/gpt-oss-120b:low FAIL 0% 171 in → 50 out (23 reasoning)
The `main‑changes` are stored in **stash @{0}**.
Failure: Expected stash reference 'stash@{0}'
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': '{"error":{"message":"<400> InternalError.Algo.InvalidParameter: \'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error","param":null,"code":"invalid_parameter_error"},"id":"chatcmpl-6a11a5f8-d332-94ee-95e7-e14feae062dd","request_id":"6a11a5f8-d332-94ee-95e7-e14feae062dd"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': '{"error":{"message":"<400> InternalError.Algo.InvalidParameter: \'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error","param":null,"code":"invalid_parameter_error"},"id":"chatcmpl-bb95634c-0adf-9bb2-9481-f057572586d1","request_id":"bb95634c-0adf-9bb2-9481-f057572586d1"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': '{"error":{"message":"<400> InternalError.Algo.InvalidParameter: \'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error","param":null,"code":"invalid_parameter_error"},"id":"chatcmpl-457b009a-7658-9498-9860-a701e3cd5676","request_id":"457b009a-7658-9498-9860-a701e3cd5676"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': '{"error":{"message":"<400> InternalError.Algo.InvalidParameter: \'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error","param":null,"code":"invalid_parameter_error"},"id":"chatcmpl-896b7479-a35e-9835-907a-10ae6eaaa33f","request_id":"896b7479-a35e-9835-907a-10ae6eaaa33f"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': '{"error":{"message":"<400> InternalError.Algo.InvalidParameter: \'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error","param":null,"code":"invalid_parameter_error"},"id":"chatcmpl-1edebd7f-d5cf-9a95-a558-fd050f69d5f6","request_id":"1edebd7f-d5cf-9a95-a558-fd050f69d5f6"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': 'data: {"error":{"code":"invalid_parameter_error","param":null,"message":"\'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error"},"id":"chatcmpl-28d4ad09-ae66-987e-a082-a3d174ea3044"}\n\n', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': 'data: {"error":{"code":"invalid_parameter_error","param":null,"message":"\'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error"},"id":"chatcmpl-48775e4b-f515-9a8f-b06e-b515cd2d5fa2"}\n\n', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': 'data: {"error":{"code":"invalid_parameter_error","param":null,"message":"\'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error"},"id":"chatcmpl-721c8953-f758-922c-8d7a-2559ef1a4fa2"}\n\n', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': 'data: {"error":{"code":"invalid_parameter_error","param":null,"message":"\'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error"},"id":"chatcmpl-8a7a9202-b2bd-9cf9-8efa-2a54f710e36c"}\n\n', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': 'data: {"error":{"code":"invalid_parameter_error","param":null,"message":"\'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error"},"id":"chatcmpl-2751cd53-7970-9155-9d20-9f09d69a6313"}\n\n', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': 'data: {"error":{"code":"invalid_parameter_error","param":null,"message":"\'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error"},"id":"chatcmpl-d965e14a-faf5-9f51-a725-05677bc89813"}\n\n', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': '{"error":{"message":"<400> InternalError.Algo.InvalidParameter: \'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error","param":null,"code":"invalid_parameter_error"},"id":"chatcmpl-df312bcf-d371-9818-9866-bd6d0eb6defd","request_id":"df312bcf-d371-9818-9866-bd6d0eb6defd"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': '{"error":{"message":"<400> InternalError.Algo.InvalidParameter: \'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error","param":null,"code":"invalid_parameter_error"},"id":"chatcmpl-5ee630f9-4f38-9972-8769-084e9e469d6b","request_id":"5ee630f9-4f38-9972-8769-084e9e469d6b"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': '{"error":{"message":"<400> InternalError.Algo.InvalidParameter: \'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error","param":null,"code":"invalid_parameter_error"},"id":"chatcmpl-d2e582a7-17b3-9f51-855d-d8c1a8cceb77","request_id":"d2e582a7-17b3-9f51-855d-d8c1a8cceb77"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': '{"error":{"message":"<400> InternalError.Algo.InvalidParameter: \'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error","param":null,"code":"invalid_parameter_error"},"id":"chatcmpl-7397a3a2-7a41-91a6-a8b0-c0ec823d49da","request_id":"7397a3a2-7a41-91a6-a8b0-c0ec823d49da"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': '{"error":{"message":"<400> InternalError.Algo.InvalidParameter: \'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error","param":null,"code":"invalid_parameter_error"},"id":"chatcmpl-db31d374-b89e-9f02-a3bf-8ab35c99be71","request_id":"db31d374-b89e-9f02-a3bf-8ab35c99be71"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': '{"error":{"message":"<400> InternalError.Algo.InvalidParameter: \'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error","param":null,"code":"invalid_parameter_error"},"id":"chatcmpl-f5815a14-a16e-9234-8d22-16f0c233e999","request_id":"f5815a14-a16e-9234-8d22-16f0c233e999"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': '{"error":{"message":"<400> InternalError.Algo.InvalidParameter: \'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error","param":null,"code":"invalid_parameter_error"},"id":"chatcmpl-a13cb98e-3451-9819-96fc-dfd1fe38b2b6","request_id":"a13cb98e-3451-9819-96fc-dfd1fe38b2b6"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': '{"error":{"message":"<400> InternalError.Algo.InvalidParameter: \'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error","param":null,"code":"invalid_parameter_error"},"id":"chatcmpl-19aa4e6f-44d0-9297-90e7-64cb4bf86e3f","request_id":"19aa4e6f-44d0-9297-90e7-64cb4bf86e3f"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': '{"error":{"message":"<400> InternalError.Algo.InvalidParameter: \'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error","param":null,"code":"invalid_parameter_error"},"id":"chatcmpl-e844d98c-3b76-978f-8db9-aa3f707fa5cf","request_id":"e844d98c-3b76-978f-8db9-aa3f707fa5cf"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
(empty output)
JSON Schema Structured Output
Failure: Error code: 400 - {'error': {'message': 'Provider returned error', 'code': 400, 'metadata': {'raw': '{"error":{"message":"<400> InternalError.Algo.InvalidParameter: \'messages\' must contain the word \'json\' in some form, to use \'response_format\' of type \'json_object\'.","type":"invalid_request_error","param":null,"code":"invalid_parameter_error"},"id":"chatcmpl-50196e67-00f8-9f46-8c05-13046fa9fc64","request_id":"50196e67-00f8-9f46-8c05-13046fa9fc64"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
tencent/hy3:xhigh__json_schema FAIL 0% 119 in → 304 out (278 reasoning)
main-changes
JSON Schema Structured Output
(raw) { "stash": "main-changes" }
Failure: Expected stash reference 'stash@{0}'
Invalid JSON. Output: The entry is **stash@{0}**. Its message `On main: main-changes` and the diff showing `Base` → `Main change` confirm it holds your unstashed main changes.{"stash": "stash@{0}"}
JSON Schema Structured Output
Structured Output Error
Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)
Failure: Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)
Invalid JSON. Output: Your `main-changes` stash is at: **`stash@{0}`**
JSON Schema Structured Output
Structured Output Error
Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)
Failure: Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)
Invalid JSON. Output: The stash labeled **main-changes** is at: **`stash@{0}`** Even though the stash message says `main-changes`, the actual diff inside (`+Main change`) shows that this is the stash where you saved "Main change" — so `stash@{0}` is the entry you want.
JSON Schema Structured Output
Structured Output Error
Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)
Failure: Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)
Invalid JSON. Output: The stash entry containing your 'main-changes' is **`stash@{0}`** (reference: `stash@{0}`).{ "stash": "stash@{0}" }
JSON Schema Structured Output
Structured Output Error
Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)
Failure: Failed to parse structured JSON response: Expecting value: line 1 column 1 (char 0)