Skip to content

Commit 87d589a

Browse files
committed
update default
1 parent 146d76d commit 87d589a

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

auto-improve-skills/cmd/skillbench/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ func main() {
5050
caseTimeout = flag.Duration("case-timeout", 6*time.Minute, "timeout per benchmark case")
5151
judge = flag.Bool("judge", false, "run optional LLM-as-judge scoring pass")
5252
judgeWeight = flag.Float64("judge-weight", 0.3, "when -judge is set, final score weight for judge score (0..1)")
53-
objectiveQualityWeight = flag.Float64("objective-quality-weight", 0.85, "composite objective weight for answer quality")
53+
objectiveQualityWeight = flag.Float64("objective-quality-weight", 0.80, "composite objective weight for answer quality")
5454
objectiveDurationWeight = flag.Float64("objective-duration-weight", 0.10, "composite objective weight for wall-clock investigation duration")
5555
objectiveSkillSizeWeight = flag.Float64("objective-skill-size-weight", 0.10, "composite objective weight for skill size")
5656
durationBudget = flag.Duration("duration-budget", 60*time.Second, "per-case wall-clock duration with no objective penalty")

auto-improve-skills/cmd/skilltrain/main_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ func TestFormatCommitBodyIncludesChangeAndScoreDetails(t *testing.T) {
475475
SkillSizeBytes: 8400,
476476
SkillSizeScore: 0.93,
477477
ObjectiveConfig: autoresearch.ObjectiveConfig{
478-
QualityWeight: 0.85,
478+
QualityWeight: 0.80,
479479
DurationWeight: 0.10,
480480
SkillSizeWeight: 0.05,
481481
DurationBudgetSeconds: 120,
@@ -513,7 +513,7 @@ func TestFormatCommitBodyIncludesChangeAndScoreDetails(t *testing.T) {
513513
"Objective: 94.25/100.00 (93.02% -> 94.25%, delta +1.23 pp)",
514514
"Average case duration: 82.3s",
515515
"Skill size: 2100 estimated tokens, 8400 bytes",
516-
"Objective config: quality=0.85 duration=0.10 skill_size=0.05",
516+
"Objective config: quality=0.80 duration=0.10 skill_size=0.05",
517517
"Researcher summary:",
518518
"Tightened the workflow",
519519
"Change summary:",

0 commit comments

Comments
 (0)