Analyze an Image with ChatGPT4 Vision and Postman
Until quite recently, ChatGPT and the OpenAI API had been restricted to receiving text data only. There is now a new model called GPT4 Vision that allows you to send an image through the OpenAI API and get back answers and information about the image, describing it, giving it a title, and so on.
In this video I will give a quick demo of how to use this new model using Postman. I will send it an image of The Mona Lisa and see what the model tells me about it.
#OpenAI #ChatGPT #GPT4 #GPT4Vision #AIImageAnalysis #MachineLearning #ArtificialIntelligence #TechInnovation #DeepLearning
#ComputerVision #AIResearch #TechnologyTrends #AIandArt #DataScience #NeuralNetworks #AIEducation #TechTutorial
#FutureOfAI #AIApplications #AIforEveryone
OpenAI Account Creation (click the Sign up button)
https://platform.openai.com/docs/overview
Sample Image URLs
https://cdn.britannica.com/24/189624-050-F3C5BAA9/Mona-Lisa-oil-wood-panel-Leonardo-da.jpg
https://cdn.britannica.com/15/155215-050-CEFDB177/painting-Vincent-Van-Gogh-Sunflowers-canvas-Oil.jpg
Sample Body Text:
{
"model": "gpt-4-vision-preview",
"messages": [
{
"role": "user",
"content": [
{
"type": "text",
"text": "Give me the artist's name and title of the image, with no other information."
},
{
"type": "image_url",
"image_url": {
"url": "https://cdn.britannica.com/15/155215-050-CEFDB177/painting-Vincent-Van-Gogh-Sunflowers-canvas-Oil.jpg"
}
}
]
}
],
"max_tokens": 300
}