outsource_image
Generate high-quality or quick concept images using OpenAI's DALL-E models. Input a detailed prompt and select the model to create visual content for sharing or use in responses.
Instructions
Delegate image generation to an external AI model. Use this when you need to create
visual content.
Args:
provider: The AI provider to use (currently only "openai" is supported)
model: The image model to use ("dall-e-3" for high quality, "dall-e-2" for faster/cheaper)
prompt: A detailed description of the image you want to generate
Returns:
The URL of the generated image, which can be shared with users or used in responses
Example usage:
For high-quality images: provider="openai", model="dall-e-3", prompt="A photorealistic rendering of..."
For quick concepts: provider="openai", model="dall-e-2", prompt="A simple sketch showing..."
Note: Only OpenAI currently supports image generation. Other providers will return an error.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
model | Yes | ||
prompt | Yes | ||
provider | Yes |
Input Schema (JSON Schema)
{
"properties": {
"model": {
"title": "Model",
"type": "string"
},
"prompt": {
"title": "Prompt",
"type": "string"
},
"provider": {
"title": "Provider",
"type": "string"
}
},
"required": [
"provider",
"model",
"prompt"
],
"title": "outsource_imageArguments",
"type": "object"
}