Skip to content

Commit e17f920

Browse files
committed
fix: remove duplicate answer output (renderer owns all display)
The renderer prints FinalAnswer to stderr. The CLI's fmt.Println to stdout was producing a second copy. Removed — the renderer is now the sole output path for agent responses.
1 parent 1965431 commit e17f920

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cmd/kode/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ func run(args []string) error {
170170
if err != nil {
171171
return err
172172
}
173-
fmt.Println(result)
173+
_ = result // rendered by the loop engine via Renderer
174174
return nil
175175
}
176176

0 commit comments

Comments
 (0)