image_classification
Identify and categorize image content using AI-powered classification to analyze visual data and extract meaningful information from photographs or digital images.
Instructions
Classify an image using DeepInfra OpenAI-compatible API with multimodal model.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
image_url | Yes | ||
model | No |
Input Schema (JSON Schema)
{
"properties": {
"image_url": {
"title": "Image Url",
"type": "string"
},
"model": {
"default": null,
"title": "Model",
"type": "string"
}
},
"required": [
"image_url"
],
"type": "object"
}