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