generate_image
Create custom images from text descriptions using AI image generation. Transform your ideas into visual content by providing descriptive prompts.
Instructions
Generate an image from a text prompt using DeepInfra OpenAI-compatible API.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
model | No | ||
prompt | Yes |
Input Schema (JSON Schema)
{
"properties": {
"model": {
"default": null,
"title": "Model",
"type": "string"
},
"prompt": {
"title": "Prompt",
"type": "string"
}
},
"required": [
"prompt"
],
"type": "object"
}