2.5 Hyper Contracts
The HyperContracts endpoint generates text based on a user's prompt using the "HyperContracts" model. Users must have sufficient credits, which are deducted upon successful text generation.
https://sdk.hypergpt.ai/hyperContractsParams :
Return Value:
Example Request:
headers = {
"Authorization": "Bearer " + bearer_token,
}
data = {
"Query": Query,
}
response = requests.post(
"https://sdk.hypergpt.ai/hyperContracts",
headers=headers,
params=data
)
return response.json()Example Response (Success):
Example Response (Error):
Last updated