run_model
Execute any Fal.ai model with custom inputs to generate AI images, supporting real-time streaming and workflow integration.
Instructions
Run any Fal.ai model with custom parameters
Input Schema
Name | Required | Description | Default |
---|---|---|---|
input | Yes | Input parameters for the model | |
model_id | Yes | The Fal.ai model endpoint ID | |
stream | No | Whether to stream results |
Input Schema (JSON Schema)
{
"properties": {
"input": {
"description": "Input parameters for the model",
"type": "object"
},
"model_id": {
"description": "The Fal.ai model endpoint ID",
"type": "string"
},
"stream": {
"default": false,
"description": "Whether to stream results",
"type": "boolean"
}
},
"required": [
"model_id",
"input"
],
"type": "object"
}