import requests
from PIL import Image
API_URL = "https://api-inference.huggingface.co/models/runwayml/stable-diffusion-v1-5"
headers = {"Authorization": f"Bearer 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"}
def query(payload):
response = requests.post(API_URL, headers=headers, json=payload)
return response.content
image_bytes = query({
"inputs": "Astronaut riding a horse",
})
image = Image.open(io.BytesIO(image_bytes))
I ran through Inference API, created my token.. pasted it in headers. i was expecting that as soon as i run the code .
The image will appear on screen on the terminal but it didnt happen and also no error was shown.
You need to use
.show()
to display the image in pillow, e.g.To save the image to file, there are several options https://stackoverflow.com/a/75824531/610569, you can try this to save as a numpy array:
Then to read the saved file:
Note: While the code snippet above works, I'm not sure if (ab)using the API to to do
requests.post()
onapi-inference.huggingface.co/models/runwayml
is encouraged.