Text to 3D

Create General

This function generates anything from just a single prompt! Once you make this function request, make note of the returned requestId. Then poll the status endpoint to get the current status of the request. Currently, requests can take ~1-5mins to complete.

API Reference:

POST /functions/general

Function Signature

client = Masterpiecex()
client.functions.create_general(**kwargs) -> GenerateResponseObject
client = Masterpiecex();
client.functions.createGeneral(body, options?): GenerateResponseObject

Parameters

PythonNodeDescription
prompt: strprompt: strThe prompt to use for the generation. eg "cute dog"

Returns

GenerateResponseObject

Example

import os
from mpx_genai_sdk import Masterpiecex

client = Masterpiecex()
response = client.functions.create_general(
    prompt="cute dog",
)
print(response.balance)
import Masterpiecex from 'mpx-genai-sdk';

const client = new Masterpiecex();
const response = await client.functions.createGeneral({ prompt: 'cute dog' });
console.log(response.balance);

Example Response

print(response.balance)  # remaining credits available associated with the account
print(response.request_id) # used to check the the status. Eg., client.status.retrieve(request_id)
print(response.status)  # current status of the request - typically pending on initial submission
console.log(response.balance); // remaining credits available associated with the account
console.log(response.requestId); // used to check the the status. Eg., client.status.retrieve(requestId)
console.log(response.status); // current status of the request - typically pending on initial submission
{
  "balance": 10550,
  "requestId": "xxxxxxxxxxxxx",
  "status": "pending"
}