Generate images without specific conditions or inputs for applications in art generation, creative design, and data augmentation
import Bytez from 'bytez.js';// insert your keyconst sdk = new Bytez('BYTEZ_KEY');// choose your modelconst model = sdk.model('afshr/cam_finetune');// provide the model with inputconst input = undefined;// send to the modelconst { error, output } = await model.run(input);// observe the outputconsole.log({ error, output });
from bytez import Bytez# insert your keysdk = Bytez("BYTEZ_KEY")# choose your modelmodel = sdk.model("afshr/cam_finetune")# provide the model with inputinput = undefined# send to the modelresult = model.run(input)# observe the outputprint({"error": result.error, "output": result.output})