From e4cb0a123624bacbcd9b2d04b1ba0833590c652b Mon Sep 17 00:00:00 2001 From: John Feng Date: Tue, 14 Apr 2026 12:41:37 +0800 Subject: [PATCH] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- cmd/picoclaw/internal/model/command.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/picoclaw/internal/model/command.go b/cmd/picoclaw/internal/model/command.go index 72200bbe5..083f089b8 100644 --- a/cmd/picoclaw/internal/model/command.go +++ b/cmd/picoclaw/internal/model/command.go @@ -27,9 +27,9 @@ Examples: picoclaw model claude-sonnet-4.6 # Set claude-sonnet-4.6 as default picoclaw model local-model # Set local VLLM/OVMS server as default -Note: 'local-model' is a special value for using a local VLLM server +Note: 'local-model' is a special value for using a local OpenAI-compatible server (running at localhost:8000 by default) which does not require an API key. -You can also use OVMS (OpenVINO Model Server) or other OpenAI-compatible servers.`, +It can be configured to point to vLLM, OVMS (OpenVINO Model Server), or other OpenAI-compatible servers.`, Args: cobra.MaximumNArgs(1), RunE: func(cmd *cobra.Command, args []string) error { configPath := internal.GetConfigPath()