summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
Diffstat (limited to 'cmd')
-rw-r--r--cmd/hexai/main.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/hexai/main.go b/cmd/hexai/main.go
index ad72439..88fa69b 100644
--- a/cmd/hexai/main.go
+++ b/cmd/hexai/main.go
@@ -84,8 +84,8 @@ func main() {
// Write assistant output to stdout
fmt.Fprint(os.Stdout, out)
- // Summary to stderr
+ // Summary to stderr (preceded by a blank line)
inSize := len(input)
outSize := len(out)
- fmt.Fprintf(os.Stderr, "done provider=%s model=%s time=%s in_bytes=%d out_bytes=%d\n", client.Name(), client.DefaultModel(), dur.Round(time.Millisecond), inSize, outSize)
+ fmt.Fprintf(os.Stderr, "\ndone provider=%s model=%s time=%s in_bytes=%d out_bytes=%d\n", client.Name(), client.DefaultModel(), dur.Round(time.Millisecond), inSize, outSize)
}