We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34cb957 commit 4b23da4Copy full SHA for 4b23da4
1 file changed
e2e/debug_title_test.go
@@ -35,6 +35,10 @@ func TestDebug_Title(t *testing.T) {
35
36
title := runCLI(t, "debug", "title", "testdata/basic.yaml", "--model="+tt.model, "What can you do?")
37
38
+ // The non-empty check is the key invariant: reasoning models
39
+ // (o-series, gpt-5) must produce visible title text despite
40
+ // hidden reasoning tokens consuming part of the output budget.
41
+ assert.NotEmpty(t, title, "title must not be empty")
42
assert.Equal(t, tt.want, title)
43
})
44
}
0 commit comments