gg / etc /examples /image_api.py
mfoud444's picture
first commit
79859e3
raw
history blame contribute delete
240 Bytes
import requests
url = "http://localhost:1337/v1/images/generations"
body = {
"model": "dall-e",
"prompt": "hello world user",
#"response_format": "b64_json",
}
data = requests.post(url, json=body, stream=True).json()
print(data)