mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-12-25 12:16:17 +03:00
9 lines
248 B
Python
9 lines
248 B
Python
import requests
|
|
url = "http://localhost:1337/v1/images/generations"
|
|
body = {
|
|
"prompt": "heaven for dogs",
|
|
"provider": "OpenaiAccount",
|
|
"response_format": "b64_json",
|
|
}
|
|
data = requests.post(url, json=body, stream=True).json()
|
|
print(data) |