hermes - 💡(How to fix) Fix show_reasoning should work independently of streaming in CLI mode

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…

In CLI mode (non-gateway), show_reasoning: true only takes effect when streaming: true is also set. See cli.py line 4023:

if self.show_reasoning and self.streaming_enabled:

This means users who prefer non-streaming CLI output (streaming: false) cannot see reasoning/thinking content, even with show_reasoning: true explicitly set.

Root Cause

In CLI mode (non-gateway), show_reasoning: true only takes effect when streaming: true is also set. See cli.py line 4023:

if self.show_reasoning and self.streaming_enabled:

This means users who prefer non-streaming CLI output (streaming: false) cannot see reasoning/thinking content, even with show_reasoning: true explicitly set.

Fix Action

Workaround

Setting streaming: true enables reasoning display, but changes the entire CLI output behavior to token-by-token streaming.

Code Example

if self.show_reasoning and self.streaming_enabled:
RAW_BUFFERClick to expand / collapse

Description

In CLI mode (non-gateway), show_reasoning: true only takes effect when streaming: true is also set. See cli.py line 4023:

if self.show_reasoning and self.streaming_enabled:

This means users who prefer non-streaming CLI output (streaming: false) cannot see reasoning/thinking content, even with show_reasoning: true explicitly set.

Expected

show_reasoning: true should display reasoning content in CLI mode regardless of the streaming setting.

Steps to reproduce

  1. Set show_reasoning: true and streaming: false in ~/.hermes/config.yaml
  2. Start hermes CLI
  3. Reasoning content is never displayed

Workaround

Setting streaming: true enables reasoning display, but changes the entire CLI output behavior to token-by-token streaming.

Version

hermes-agent v0.13.0 (May 2026)

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING