#Can i get a seperate model for vision as my main one doesnt support it

1 messages Β· Page 1 of 1 (latest)

subtle fiber
#

Can i get a seperate model for vision as my main one doesnt support it

devout sableBOT
#

To help others find answers, you can mark your question as solved via Right click solution message -> Apps -> βœ… Mark Solution

forest solsticeBOT
#

Yes β€” set a separate vision analysis model with agents.defaults.imageModel.

Example in ~/.openclaw/openclaw.json:

{
  agents: {
    defaults: {
      model: {
        primary: "provider/text-model",
      },
      imageModel: {
        primary: "provider/vision-model",
        fallbacks: ["provider/backup-vision-model"],
      },
    },
#

If you’re using a custom/local provider, make sure that model is marked image-capable with input: ["text", "image"]. For picking the exact model, #models will have fresher recommendations. 🦐

subtle fiber
#

Give me a command to search for avalible vision models in oc config

forest solsticeBOT
#

Use this:

openclaw models list --json | jq -r '.models[] | select((.input // "") | contains("image")) | .key'

If you only want models with auth available:

openclaw models list --json | jq -r '.models[] | select(((.input // "") | contains("image")) and (.available == true)) | .key'

Then set one as the vision model:

openclaw models set-image provider/model