api_generations_image.py 299 B

123456789101112
  1. import requests
  2. url = "http://localhost:1337/v1/images/generations"
  3. body = {
  4. "model": "flux",
  5. "prompt": "hello world user",
  6. "response_format": None,
  7. #"response_format": "url",
  8. #"response_format": "b64_json",
  9. }
  10. data = requests.post(url, json=body, stream=True).json()
  11. print(data)