aisha-ai-official / flux.1dev-uncensored-fluxedup-nsfw-v3
Run aisha-ai-official/flux.1dev-uncensored-fluxedup-nsfw-v3 with an API
Use one of our client libraries to get started quickly. Clicking on a library will take you to the Playground tab where you can tweak different inputs, see the results, and copy the corresponding code to use in your own project.
Input schema
The fields you can use to run this model with an API. If you don't give a value for a field its default value will be used.
Field | Type | Default value | Description |
---|---|---|---|
prompt |
string
|
The prompt
|
|
cfg_scale |
number
|
5
Max: 20 |
CFG scale defines how much attention the model pays to the prompt when generating
|
width |
integer
|
1024
Min: 512 Max: 2048 |
The width of the image
|
height |
integer
|
1024
Min: 512 Max: 2048 |
The height of the image
|
scheduler |
string
(enum)
|
default
Options: default, Euler flux Karras, Euler flux Simple/SGM Uniform, Euler flux Exponential, Euler flux Beta |
The scheduler to denoise the image
|
steps |
integer
|
20
Min: 4 Max: 50 |
Number of steps when generating
|
seed |
integer
|
-1
Min: -1 |
The seed for generation; set to -1 for random seed
|
{
"type": "object",
"title": "Input",
"required": [
"prompt"
],
"properties": {
"seed": {
"type": "integer",
"title": "Seed",
"default": -1,
"minimum": -1,
"x-order": 6,
"description": "The seed for generation; set to -1 for random seed"
},
"steps": {
"type": "integer",
"title": "Steps",
"default": 20,
"maximum": 50,
"minimum": 4,
"x-order": 5,
"description": "Number of steps when generating"
},
"width": {
"type": "integer",
"title": "Width",
"default": 1024,
"maximum": 2048,
"minimum": 512,
"x-order": 2,
"description": "The width of the image"
},
"height": {
"type": "integer",
"title": "Height",
"default": 1024,
"maximum": 2048,
"minimum": 512,
"x-order": 3,
"description": "The height of the image"
},
"prompt": {
"type": "string",
"title": "Prompt",
"x-order": 0,
"description": "The prompt"
},
"cfg_scale": {
"type": "number",
"title": "Cfg Scale",
"default": 5,
"maximum": 20,
"minimum": 0,
"x-order": 1,
"description": "CFG scale defines how much attention the model pays to the prompt when generating"
},
"scheduler": {
"enum": [
"default",
"Euler flux Karras",
"Euler flux Simple/SGM Uniform",
"Euler flux Exponential",
"Euler flux Beta"
],
"type": "string",
"title": "scheduler",
"description": "The scheduler to denoise the image",
"default": "default",
"x-order": 4
}
}
}
Output schema
The shape of the response you’ll get when you run this model with an API.
{
"type": "array",
"items": {
"type": "string",
"format": "uri"
},
"title": "Output"
}