Mixed merged and unmerged with many branches
Tests ability to process many branches (10+) with mixed merge status. Evaluates scalability of branch cleanup analysis.
Baseline Repository
These commands set up the repo before the model sees the prompt. They define the starting file structure, staged changes, and Git history.
- 01
git init - 02
git config user.email 'test@test.com' - 03
git config user.name 'Test User' - 04
echo 'App' > app.txt - 05
git add app.txt - 06
git commit -m 'Initial' - 07
git checkout -b fix-typo - 08
echo 'typo fix' > typo.txt - 09
git add typo.txt - 10
git commit -m 'Fix typo' - 11
git checkout main - 12
git merge fix-typo - 13
git checkout -b fix-bug - 14
echo 'bug fix' > bug.txt - 15
git add bug.txt - 16
git commit -m 'Fix bug' - 17
git checkout main - 18
git merge fix-bug - 19
git checkout -b feature-v2 - 20
echo 'v2' > v2.txt - 21
git add v2.txt - 22
git commit -m 'Start v2' - 23
git checkout main - 24
git checkout -b feature-v3 - 25
echo 'v3' > v3.txt - 26
git add v3.txt - 27
git commit -m 'Start v3' - 28
git checkout main - 29
git checkout -b docs-update - 30
echo 'docs' > docs.txt - 31
git add docs.txt - 32
git commit -m 'Update docs' - 33
git checkout main - 34
git merge docs-update
Prompt
Look at the branches in this repository. Which branches should be deleted because they are fully merged into main? List ONLY the branch names to delete, one per line. If none, respond with 'none'.
Expected
docs-update
fix-bug
fix-typo
Fixture Metrics
Scoped model quality, cost, API time, and token usage for branch_cleanup/f012.
Loading...
Raw Attempt Evidence
Loading raw attempt evidence…
Model Outputs (546)
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
Based on the `git branch --merged main` output, these branches are fully merged into main and can be safely deleted (excluding `main` itself, which is the current/protected branch):
docs-update
fix-bug
fix-typo
**Note:** `feature-v2` and `feature-v3` are NOT in the merged list, so they contain unmerged work and should be kept.
Failure: Extra: ['**Note:** `feature-v2` and `feature-v3` are NOT in the merged list, so they contain unmerged work and should be kept.', 'Based on the `git branch --merged main` output, these branches are fully merged into main and can be safely deleted (excluding `main` itself, which is the current/protected branch):']
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
Based on the "Merged into main" list, these branches are fully merged and can be safely deleted (excluding `main` itself):
docs-update
fix-bug
fix-typo
Note: `feature-v2` and `feature-v3` are NOT in the merged list, so they contain unmerged work and should be kept. `main` is excluded since it's the branch you're keeping.
Failure: Extra: ['Based on the "Merged into main" list, these branches are fully merged and can be safely deleted (excluding `main` itself):', "Note: `feature-v2` and `feature-v3` are NOT in the merged list, so they contain unmerged work and should be kept. `main` is excluded since it's the branch you're keeping."]
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) { "branches_to_delete": ["docs-update", "fix-bug", "fix-typo"] }
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) { "branches_to_delete": [ "docs-update", "fix-bug", "fix-typo" ] }
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) { "branches_to_delete": ["docs-update", "fix-bug", "fix-typo"] }
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) { "branches_to_delete": ["docs-update", "fix-bug", "fix-typo"] }
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) { "branches_to_delete": ["docs-update", "fix-bug", "fix-typo"] }
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) { "branches_to_delete": ["docs-update", "fix-bug", "fix-typo"] }
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) { "branches_to_delete": ["docs-update", "fix-bug", "fix-typo"] }
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) { "branches_to_delete": [ "docs-update", "fix-bug", "fix-typo" ] }
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":
[
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete":["docs-update","fix-bug","fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) { "branches_to_delete": ["docs-update", "fix-bug", "fix-typo"] }
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) { "branches_to_delete": ["docs-update", "fix-bug", "fix-typo"] }
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
(raw) {"branches_to_delete": ["docs-update", "fix-bug", "fix-typo"]}
docs-update
fix-bug
fix-typo
docs-update
fix-bug
fix-typpo
JSON Schema
Structured Output
(raw) { "branches_to_delete": [ "docs-update", "fix-bug", "fix-typpo" ] }
Failure: Missing: ['fix-typo']
Extra: ['fix-typpo']
docs-update
fix- bug
fix-typo
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"docs-update",
"fix- bug",
"fix-typo"
]
}
Failure: Missing: ['fix-bug']
Extra: ['fix- bug']
docs-update
fix-bug
fix-typo<|end_message|>
Failure: Missing: ['fix-typo']
Extra: ['fix-typo<|end_message|>']
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)
feature-v2
feature-v3
Failure: Missing: ['docs-update', 'fix-bug', 'fix-typo']
Extra: ['feature-v2', 'feature-v3']
feature-v2
feature-v3
Failure: Missing: ['docs-update', 'fix-bug', 'fix-typo']
Extra: ['feature-v2', 'feature-v3']
Invalid JSON. Output: feature-v2
feature-v3
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: docs-update
fix-bug
fix-typo
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: docs-update
fix-bug
fix-typo
JSON Schema
Structured Output
Structured Output Error
Failed to parse structured JSON response: Expecting value: line 1 column 2 (char 1)
Failure: Failed to parse structured JSON response: Expecting value: line 1 column 2 (char 1)
(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-fd8456b0-ffd0-9784-a63d-4123d1862698","request_id":"fd8456b0-ffd0-9784-a63d-4123d1862698"}', '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-ad54781b-2b8d-9292-8b0e-c216cc899b7f","request_id":"ad54781b-2b8d-9292-8b0e-c216cc899b7f"}', '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-321c0fe2-b0fd-9826-97f4-acd722cccb1c","request_id":"321c0fe2-b0fd-9826-97f4-acd722cccb1c"}', '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-7ca83258-39d6-9d3a-bb31-805c3c7262e7","request_id":"7ca83258-39d6-9d3a-bb31-805c3c7262e7"}', '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-0559fef3-80b9-963f-b33f-8f45f2a636f5","request_id":"0559fef3-80b9-963f-b33f-8f45f2a636f5"}', '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-27f59a4b-63b8-9627-bf27-7a4867c288cf"}\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-8ce8f305-22f6-9790-a8d8-4ad1923a7165"}\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-c476509e-e45e-9def-8647-533631720ebe"}\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-38f016d9-be4d-9137-84e4-3d59fec406fc"}\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-7c96613e-6c84-92b0-8773-4c42e89d3d70"}\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-588c68b0-050b-96c6-a267-63a424b354c7"}\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-b4708091-47e7-9814-b395-575cbb6491eb","request_id":"b4708091-47e7-9814-b395-575cbb6491eb"}', '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-5bf66af9-67e3-9818-b9e0-be54910104e5","request_id":"5bf66af9-67e3-9818-b9e0-be54910104e5"}', '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-a71da061-fa82-9eb0-a8a7-49789f6e19bd","request_id":"a71da061-fa82-9eb0-a8a7-49789f6e19bd"}', '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-82dbbe6a-1081-9c19-8461-b28b985c10f8","request_id":"82dbbe6a-1081-9c19-8461-b28b985c10f8"}', '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-60872085-8d45-973b-bf7b-9efa83f01f0c","request_id":"60872085-8d45-973b-bf7b-9efa83f01f0c"}', '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-111d8407-5dec-9c1a-a014-08276a783062","request_id":"111d8407-5dec-9c1a-a014-08276a783062"}', '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-d04cb07e-7e5e-95e1-a61f-f46b55edf5c9","request_id":"d04cb07e-7e5e-95e1-a61f-f46b55edf5c9"}', '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-3ca03ebe-4b61-9e4f-bd2a-c86e0c8f9df8","request_id":"3ca03ebe-4b61-9e4f-bd2a-c86e0c8f9df8"}', '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-134b0b47-83c1-994f-81a5-a06546aea2b5","request_id":"134b0b47-83c1-994f-81a5-a06546aea2b5"}', '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-52d00030-2d4d-9fa9-977e-1153eef4bc82","request_id":"52d00030-2d4d-9fa9-977e-1153eef4bc82"}', 'provider_name': 'Alibaba', 'is_byok': False}}, 'user_id': 'user_3FrVBkmFqVIuZ58dEh7AU8vhXUV'}
Invalid JSON. Output: docs-update
fix-bug
fix-typo{
"branches_to_delete": [
"docs-update",
"fix-bug",
"fix-typo"
]
}
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: docs-update
fix-bug
fix-typo
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: docs-update
fix-bug
fix-typo
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)
feature-v2
feature-v3
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"feature-v2",
"feature-v3"
]
}
Failure: Missing: ['docs-update', 'fix-bug', 'fix-typo']
Extra: ['feature-v2', 'feature-v3']
Invalid JSON. Output: docs-update
fix-bug
fix-typo
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)
feature-v2
feature-v3
JSON Schema
Structured Output
(raw) {
"branches_to_delete": [
"feature-v2",
"feature-v3"
]
}
Failure: Missing: ['docs-update', 'fix-bug', 'fix-typo']
Extra: ['feature-v2', 'feature-v3']
Invalid JSON. Output: feature-v2
feature-v3
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: docs-update
fix-bug
fix-typo
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: docs-update
fix-bug
fix-typo
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)