From ad11033ed15ac9fb3504bba57dbe6c46ed59154f Mon Sep 17 00:00:00 2001 From: Juan Antonio Osorio Date: Mon, 27 Jan 2025 09:02:57 +0200 Subject: [PATCH] Fix Ollama URL from CLI help The actual value does not include the `/api` resource. The "help" was misleading. Signed-off-by: Juan Antonio Osorio --- src/codegate/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/codegate/cli.py b/src/codegate/cli.py index 7bcd035d..374de39b 100644 --- a/src/codegate/cli.py +++ b/src/codegate/cli.py @@ -190,7 +190,7 @@ def show_prompts(prompts: Optional[Path]) -> None: "--ollama-url", type=str, default=None, - help="Ollama provider URL (default: http://localhost:11434/api)", + help="Ollama provider URL (default: http://localhost:11434/)", ) @click.option( "--model-base-path",