2.10 Hyper Images
The HyperImages endpoint generates images based on text prompts using the "hyperimages" model. Users must have sufficient credits, which are deducted upon successful image generation.
https://sdk.hypergpt.ai/hyperImagesExample Request:
headers = {
"Authorization": "Bearer " + bearer_token,
}
data = {
"Query": Query,
"sample": samples,
"steps": steps,
"negative": negative,
"width": width,
"height": height,
}
response = requests.post(
"https://sdk.hypergpt.ai/hyperImages",
headers=headers,
params=data
)Last updated