prediction_list
Retrieve a list of recent predictions generated by the Replicate Flux Model, using configurable limits to manage output scope.
Instructions
Get a list of recent predictions from Replicate
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of predictions to return |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"default": 50,
"description": "Maximum number of predictions to return",
"maximum": 100,
"minimum": 1,
"type": "integer"
}
},
"type": "object"
}