Install
openclaw skills install image-upscaler专业 AI 图像增强工具:模糊变清晰、缩略图变清晰、2×/4× 无损放大。
openclaw skills install image-upscaler[!IMPORTANT] 区域限制: 中国大陆 API Key 获取: 微信搜索小程序 "无损放大 AI" → 个人中心/API 管理 → 复制
api_key(格式:pk_live_xxx)
curl -X POST "https://supabase.00123.fun:22334/functions/v1/api-process-image" \
-F "file=@/path/to/image.jpg" \
-F "api_key=your_api_key"
响应: {"result":"suc", "task_id":"..."}
curl -X POST "https://supabase.00123.fun:22334/functions/v1/api-get-task" \
-H "Content-Type: application/json" \
-d '{"api_key":"your_api_key", "task_id":"your_task_id"}'
响应: {"result":"suc", "tasks":[{"status":"done", "processed_url":"..."}]}
pending / processing: 排队或处理中(建议每 3 秒轮询一次)done: 成功,使用 下载结果failed / nsfw: 失败或内容违规api-process-image 上传文件并拿取 task_id。api-get-task 检查状态。done 时返回 processed_url;若为 failed/nsfw 则提示失败。