diff --git a/lib/openclaw-provider.js b/lib/openclaw-provider.js index 92a7362..76b0492 100644 --- a/lib/openclaw-provider.js +++ b/lib/openclaw-provider.js @@ -52,7 +52,7 @@ function fetchModels(baseUrl, apiKey, callback) { try { const json = JSON.parse(data); if (json.data && Array.isArray(json.data)) { - callback(null, json.data.map((m) => ({ id: m.id, name: m.id }))); + callback(null, json.data.map((m) => ({ id: m.id, name: m.id, input: ['text', 'image'] }))); } else if (json.error) { callback(new Error(json.error.message || JSON.stringify(json.error))); } else {