The correct answer is endpoint of the model . After a vision-enabled GPT model is deployed in Microsoft Foundry, the deployment exposes an inference endpoint that applications can call programmatically. The application sends requests containing text and, when required, image content to the deployed model through the appropriate chat-completions API endpoint. Microsoft’s documentation explicitly states that to use vision-enabled models, you call the Chat Completion API against a supported model that has been deployed.
The Foundry playground is primarily an interactive environment for testing prompts, model behavior, and multimodal inputs during development. It is not the production interface that an external application uses to submit inference requests. An evaluation pipeline is used to assess model or application quality against defined metrics and datasets, while a training dataset is associated with model training or fine-tuning rather than serving inference traffic.
Microsoft Foundry provides the endpoint and required authentication information after deployment. Applications then invoke that endpoint using an SDK or REST API, passing text and image inputs as part of the request payload.
Contribute your Thoughts:
Chosen Answer:
This is a voting comment (?). You can switch to a simple comment. It is better to Upvote an existing comment if you don't have anything to add.
Submit