Forum Discussion
HarshitS1820
Jun 21, 2024Copper Contributor
Azure Open AI
Hi Team, I have been trying to use gpt-4o capability on azure open-ai to pass base64 encoded image. But I m getting this response: {"requestPayload":null,"meta":{"blocking":true},"status":"complet...
Jamony
Jun 29, 2026MCT
Don’t pass the raw base64 string by itself. Pass it as an image data URI, for example data:image/png;base64,<your_base64_here>, inside the image input field. Also make sure the base64 is complete, not truncated by logging or payload size, and that the deployment/model supports vision input.