Skip to content

Commit 4f8435b

Browse files
authored
Fix bug in query.py
Trigger pipeline
1 parent bd0c86c commit 4f8435b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

needlectl/cli/query.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def search_run(ctx: typer.Context, prompt: str, n: Optional[int] = None, m: Opti
1919

2020
if not engine_configs:
2121
typer.echo(
22-
"No enabled and activated generator has been found! use 'needlectl generator config edit' to edit generator configurations. ")
22+
"No enabled and activated generator has been found! use 'needlectl generator config' to edit generator configurations. ")
2323
raise typer.Exit(code=1)
2424

2525
result = client.run_search(prompt=prompt, engine_configs=engine_configs, num_images_to_retrieve=n,

0 commit comments

Comments
 (0)