Update configuration
Tests ability to generate a commit message for a configuration change. Evaluates describing infrastructure/config modifications.
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
printf '{\n "version": "1.0",\n "debug": false\n}\n' > config.json - 05
git add config.json - 06
git commit -m 'Add config' - 07
printf '{\n "version": "1.1",\n "debug": true,\n "cache": true\n}\n' > config.json - 08
git add config.json
Prompt
Generate a concise commit message (max 50 characters) describing the changes in this diff. Focus on the action taken (e.g., 'Add', 'Fix', 'Update').
Expected
Update config with caching enabled
Campaign Evidence
Loading campaign evidence…
Model Outputs (14)
Update version, enable debug and cache
JSON Schema
Structured Output
(raw) {"commit_message":"Update version, enable debug and cache"}
Update config: version 1.1, enable debug & cache
JSON Schema
Structured Output
(raw) {"commit_message": "Update config: version 1.1, enable debug & cache"}
"Update config: version 1.1, enable debug and cache"
Update config: bump version, enable debug and cache
JSON Schema
Structured Output
(raw) {
"commit_message": "Update config: bump version, enable debug and cache"
}
Update config to v1.1, enable debug and cache
JSON Schema
Structured Output
(raw) {"commit_message": "Update config to v1.1, enable debug and cache"}
Update config: bump version, enable debug and cache
Update config: bump version, enable debug and cache
Update config: bump version, enable debug and cache
JSON Schema
Structured Output
(raw) {
"commit_message": "Update config: bump version, enable debug and cache"
}
Update config: v1.1, enable debug and cache
JSON Schema
Structured Output
(raw) {"commit_message": "Update config: v1.1, enable debug and cache"}
Update config: v1.1, enable debug, add cache
Update config to v1.1, enable debug and cache
Bump version to 1.1, enable debug and cache
Update config: version 1.1, debug on, add cache
JSON Schema
Structured Output
(raw) {"commit_message": "Update config: version 1.1, debug on, add cache"}
Update config: bump version, add cache, enable debug