2.2 Hyper Art
The HyperArt endpoint generates images based on an uploaded image and a provided text query using the "HyperArt" model. Users must have sufficient credits, which are deducted upon successful image gen
https://sdk.hypergpt.ai/hyperArtheaders = {
"Authorization": bearer_token
}
data = {
"query": query,
"samples": samples,
"step": step
}
files = {
"file": (file.filename, file.file, file.content_type)
}
response = requests.post(
"https://whale-app-2-ojzej.ondigitalocean.app/hyperArt",
headers=headers,
data=data,
files=files
)
return response.json()Last updated