LogoLogo
IntroInstalling Dashboard
  • 🌐Distribute
    • Introducing DistributeAI
    • FAQ
  • 🪙Distribute For $DIS
    • Tokenomics
    • Important Addresses
      • Mint Address
      • Multi Sigs and Escrow
    • DIS Alpha Airdrop
  • DIS Beta Rewards Phase
  • 🏢Distribute For Enterprise
    • Enterprise Inference API
      • Authentication
      • Billing
        • Text To Text
        • Text To Image
        • Text To Speech
      • OpenAI Compatible API
        • Images
          • Generations
        • Chat
          • Completions
        • Audio
          • Speech
      • Async API
        • Chat
          • Chat Create
          • Chat Result
        • Images
          • Images Create
          • Images Result
        • Speech
          • Speech Create
          • Speech Result
    • Enterprise Compute Providers
  • 🖥️Distribute For Inference Providers
    • Chrome Extension
      • Installing Extension
        • Enabling Chrome Flags
        • Chrome GPU Setup Guide
      • Updating the Extension
    • Desktop App
      • Installing Desktop App
      • Desktop App Debugging
        • Windows Debugging
        • MacOS Debugging
        • Linux Debugging
      • Desktop System Requirements
  • 📱Distribute For Consumers
    • Distribute.ai Discord Bot
      • Adding the bot to a server
      • Adding the bot as a user app
      • Bot Commands
      • Generation Buttons
      • Prompting Guide
    • Distribute.ai Dashboard
      • Statistics
      • Referrals
      • Account Settings
Powered by GitBook
On this page
  1. Distribute For Enterprise
  2. Enterprise Inference API
  3. OpenAI Compatible API
  4. Images

Generations

PreviousImagesNextChat

Last updated 17 days ago

🏢
post
Body
nnumber · enumOptionalDefault: 1Possible values:
seednumberOptionalDefault: 486347
sizestringOptionalDefault: 768x768Pattern: ^([1-9]\d{0,2}|1024)x([1-9]\d{0,2}|1024)$
stylestringOptional
modelstring · enumRequiredPossible values:
streambooleanOptionalDefault: false
promptstring · max: 1000Required
guidance_scalenumber · min: 1 · max: 20OptionalDefault: 6
inference_stepsnumber · min: 1 · max: 30OptionalDefault: 16
response_formatstring · enumOptionalDefault: urlPossible values:
Responses
200
Default Response
application/json
Responseany of
or
stringOptional
400
Default Response
application/json
404
Default Response
application/json
500
Default Response
application/json
post
POST /v1/images/generations HTTP/1.1
Host: 
Content-Type: application/json
Accept: */*
Content-Length: 171

{
  "n": 1,
  "seed": 486347,
  "size": "768x768",
  "style": "text",
  "model": "Flux.1 [dev]",
  "stream": false,
  "prompt": "text",
  "guidance_scale": 6,
  "inference_steps": 16,
  "response_format": "url"
}
[
  {
    "url": "text",
    "b64_json": "text",
    "revised_prompt": "text"
  }
]