Skip to content

Commit d99dd5a

Browse files
committed
Release v0.1.24
Changes since v0.1.23: - Test: harden CLI and hook execution assertions (228f4bf) - Version bump to 0.1.24 - Added theme module for TUI customization - Major TUI and workflow enhancements (repl, tui, code_agent) - Configuration and defaults updates - Core system improvements (context, persistence, router, scheduler, sessions) - Tool enhancements (delegate, loader, web) - Test suite updates
1 parent 228f4bf commit d99dd5a

29 files changed

Lines changed: 2453 additions & 625 deletions

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "nemocode"
3-
version = "0.1.23"
3+
version = "0.1.24"
44
description = "Terminal-first control plane for NVIDIA Nemotron 3 — agentic coding, RAG, doc-ops, and multi-model formations."
55
readme = "README.md"
66
requires-python = ">=3.11"

src/nemocode/cli/commands/chat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
def chat_cmd(
2222
prompt: str = typer.Argument(None, help="Chat message (or pipe via stdin)"),
2323
endpoint: str = typer.Option(None, "-e", "--endpoint", help="Endpoint to use"),
24-
think: bool = typer.Option(False, "--think", help="Show thinking trace"),
24+
think: bool = typer.Option(True, "--think/--no-think", help="Show/hide thinking trace"),
2525
) -> None:
2626
"""Simple streaming chat with a Nemotron model. No tools."""
2727
# Read from stdin if no prompt

src/nemocode/cli/commands/code.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def code_cmd(
2222
endpoint: str = typer.Option(None, "-e", "--endpoint", help="Endpoint override"),
2323
formation: str = typer.Option(None, "-f", "--formation", help="Formation to use"),
2424
agent: str = typer.Option(None, "-a", "--agent", help="Primary agent profile to use"),
25-
think: bool = typer.Option(False, "--think", help="Show thinking trace"),
25+
think: bool = typer.Option(True, "--think/--no-think", help="Show/hide thinking trace"),
2626
yes: bool = typer.Option(False, "-y", "--yes", help="Auto-approve all tool calls"),
2727
tui: bool = typer.Option(False, "--tui", help="Launch full-screen TUI instead of REPL"),
2828
) -> None:

0 commit comments

Comments
 (0)