gpt4free/etc/examples/api_generations_image.py
kqlio67 e0f5e83729
Update docs/. etc/. g4f/. README.md (#2515)
Co-authored-by: kqlio67 <>
2024-12-28 20:11:48 +01:00

11 lines
299 B
Python
Executable file

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)