@canva/cli
Version:
The official Canva CLI.
22 lines (18 loc) • 630 B
text/typescript
/**
* Expected loading time for the progress bar.
* Adjust this value to match the estimated loading time of your Generative AI model.
*/
export const EXPECTED_LOADING_TIME_IN_SECONDS = 5;
/**
* Determines the default number of images generated when using the `generateImages` function.
*/
export const NUMBER_OF_IMAGES_TO_GENERATE = 4;
/**
* Number of seconds to wait between polling for generated images.
*/
export const POLLING_INTERVAL_IN_SECONDS = 3;
/**
* Your app's name. This is used when reporting generated content.
* @TODO: Update your app's name here.
*/
export const APP_NAME = "Add your app name here";