{"success":true,"tool":{"name":"vision-analysis","description":"Analyze images using ByteDance Seed vision model. Supports image understanding, visual Q&A, OCR, object detection, document analysis, and more.","category":"ai","icon":"👁️","cost":0.5,"parameters":[{"name":"prompt","type":"string","required":true,"description":"The question or instruction about the image(s). Be specific about what you want to know or extract."},{"name":"images","type":"array","required":true,"description":"Array of image objects. Each object should have either \"url\" (public URL or data URL) or \"base64\" (base64-encoded image data)."},{"name":"system_prompt","type":"string","required":false,"description":"Optional system prompt to guide the model behavior (e.g., \"You are an expert document analyst\")."},{"name":"max_tokens","type":"number","required":false,"description":"Maximum tokens in the response. Default: 2048.","default":2048},{"name":"temperature","type":"number","required":false,"description":"Sampling temperature (0-2). Lower = more focused, higher = more creative. Default: 0.7.","default":0.7}]},"examples":[{"name":"Image Description","description":"Describe what is in an image","request":{"prompt":"Describe this image in detail.","images":[{"url":"https://example.com/image.jpg"}]}},{"name":"Visual Q&A","description":"Ask a specific question about an image","request":{"prompt":"What is the person doing in this picture?","images":[{"url":"https://example.com/photo.jpg"}]}},{"name":"OCR / Text Extraction","description":"Extract text from documents or screenshots","request":{"prompt":"Extract all text from this image. Return it in a structured format.","images":[{"base64":"<base64-encoded-image>"}],"system_prompt":"You are an OCR specialist. Extract text accurately and preserve formatting."}},{"name":"Document Analysis","description":"Analyze invoices, forms, or documents","request":{"prompt":"Analyze this document and extract key information as JSON.","images":[{"url":"https://example.com/document.png"}],"system_prompt":"You are a document analysis expert. Extract structured data accurately."}},{"name":"Image Comparison","description":"Compare multiple images","request":{"prompt":"Compare these two images and describe the differences.","images":[{"url":"https://example.com/image1.jpg"},{"url":"https://example.com/image2.jpg"}]}},{"name":"Chart Analysis","description":"Interpret charts and graphs","request":{"prompt":"Analyze this chart. What are the key trends and insights?","images":[{"url":"https://example.com/chart.png"}]}},{"name":"Code Screenshot","description":"Read and explain code from screenshots","request":{"prompt":"Read the code in this screenshot and explain what it does.","images":[{"base64":"<base64-encoded-screenshot>"}],"system_prompt":"You are a senior software engineer. Analyze code accurately."}}],"endpoint":"/api/mcp/tools/vision-analysis","method":"POST","model":"seed-1-8-251228"}