chore(sync): mirror docs from openclaw/openclaw@b902d86318

This commit is contained in:
openclaw-docs-sync[bot] 2026-05-06 08:28:32 +00:00
parent c27adbb66e
commit 0be6ce0d63
2 changed files with 4 additions and 3 deletions

View File

@ -1,5 +1,5 @@
{
"repository": "openclaw/openclaw",
"sha": "a1b49c4b20027c42abbfeeeafbc34fa4379d3ef0",
"syncedAt": "2026-05-06T08:19:54.997Z"
"sha": "b902d86318e587d80c2734fe14637ce8c0f418a9",
"syncedAt": "2026-05-06T08:26:24.828Z"
}

View File

@ -164,7 +164,8 @@ openclaw infer model run --local --model ollama/qwen2.5vl:7b --prompt "Describe
Notes:
- Local `model run` is the narrowest CLI smoke for provider/model/auth health because it sends only the supplied prompt to the selected model.
- Local `model run` is the narrowest CLI smoke for provider/model/auth health because, for non-Codex providers, it sends only the supplied prompt to the selected model.
- `openai-codex/*` local probes are the narrow exception: OpenClaw adds a minimal system instruction so the Codex Responses transport can populate its required `instructions` field, without adding full agent context, tools, memory, or session transcript.
- Local `model run --file` keeps that lean path and attaches image content directly to the single user message. Common image files such as PNG, JPEG, and WebP work when their MIME type is detected as `image/*`; unsupported or unrecognized files fail before the provider is called.
- `model run --file` is best when you want to test the selected multimodal text model directly. Use `infer image describe` when you want OpenClaw's image-understanding provider selection and default image-model routing.
- The selected model must support image input; text-only models may reject the request at the provider layer.