gpt / gpt4free /etc /examples /api_generations_image.py
LoRDxdd's picture
Add gpt4free API for Hugging Face
a4b70d9
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)