We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe1a8c5 commit d1b3784Copy full SHA for d1b3784
2 files changed
CHANGELOG.md
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
8
## [Unreleased]
9
10
+### Fixed
11
+
12
+- Use correct command hint to configure llm
13
14
## [0.6.27] - 2026-02-03
15
16
### Fixed
src/commands/ask.rs
@@ -520,7 +520,7 @@ pub async fn execute(args: AskArgs) -> Result<i32> {
520
let llm_response = if args.llm {
521
if !config.llm_ready() {
522
eprintln!(
523
- "{} LLM not configured. Run `unfault llm setup` to enable AI-powered answers.",
+ "{} LLM not configured. Run `unfault config llm` to enable AI-powered answers.",
524
"⚠".yellow()
525
);
526
eprintln!();
0 commit comments