fix(cli): correct invalid escape sequence in confirm_ollama_endpoint docstring

The docstring used \` (an invalid escape that raises SyntaxWarning and will
become a SyntaxError); use plain backticks.
This commit is contained in:
Yijia-Xiao
2026-06-13 21:30:11 +00:00
parent dab07688fb
commit a597063747

View File

@@ -498,7 +498,7 @@ def confirm_ollama_endpoint(url: str) -> None:
Surfaces three things the user benefits from seeing before model
selection: which URL we'll actually hit, where it came from
(\`OLLAMA_BASE_URL\` vs default), and a soft warning if the URL is
(`OLLAMA_BASE_URL` vs default), and a soft warning if the URL is
missing the scheme/port that ollama-serve expects. The warning is
advisory only — we don't reject malformed input, since the user may
be doing something deliberately unusual (e.g. a reverse-proxy path).