Generate images without specific conditions or inputs for applications in art generation, creative design, and data augmentation
Copy
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 });