analyze_image
Extract insights from images using GPT-4-turbo. Submit an image URL to analyze and describe its content through natural language, enhancing AI-driven understanding of visual data.
Instructions
画像URLを受け取り、GPT-4-turboを使用して画像の内容を分析します
Input Schema
Name | Required | Description | Default |
---|---|---|---|
imageUrl | Yes | 分析する画像のURL |
Input Schema (JSON Schema)
{
"properties": {
"imageUrl": {
"description": "分析する画像のURL",
"type": "string"
}
},
"required": [
"imageUrl"
],
"type": "object"
}