## Basic tool info Tool name: WizardWhitebeard/Big-Eyed-Cartoon-Faces Tool description: Big Eyed Cartoon Faces Tool cover: https://cdn.wiro.ai/uploads/models/WizardWhitebeard-Big-Eyed-Cartoon-Faces-cover.jpeg Tool categories: - model - text-to-image - checkpoint-file - lora-flux - bf16 - persistent Tool tags: - animation - whimsical - style - illustration - cartoon - toon - big eyes - rubberhose - rubber hose Run Task Endpoint (POST): https://api.wiro.ai/v1/Run/WizardWhitebeard/Big-Eyed-Cartoon-Faces Get Task Detail Endpoint (POST): https://api.wiro.ai/v1/Task/Detail ## Tool Inputs: - name: prompt label: prompt help: prompt-help type: textarea default: w1z4rd_crtnf4c3, morbidly obese Donald Trump speaking at the Republican National Convention, wearing a red cap that say "AMERICA'S WORST" - name: samples label: numberofoutputs help: numberofoutputs-help type: number default: 1 - name: steps label: inferencesteps help: inferencesteps-help type: number default: 20 - name: scale label: guidancescale help: guidancescale-help type: float default: 1 - name: seed label: seed help: seed-help type: text default: 3389138199 - name: width label: width help: width-help type: number default: 1024 - name: height label: height help: height-help type: number default: 1024 ## Tool Parameter Inspires: - prompt: w1z4rd_crtnf4c3, morbidly obese Donald Trump speaking at the Republican National Convention, wearing a red cap that say "AMERICA'S WORST" - steps: 24 - scale: 5 - prompt: w1z4rd_crtnf4c3, cartoon Girl With A Pearl Earring by Vermeer - prompt: w1z4rd_crtnf4c3, R2-D2 inside futuristic sewers, Listening to a podcast intensely. bloodshot eyes, teeth clenched, extremely large nose. - steps: 24 - scale: 5 - prompt: w1z4rd_crtnf4c3, eccentric scene of an old wizard standing in a dimly lit dungeon or castle tower, poised dramatically over a bubbling cauldron. The wizard, clad in a flowing, ragged rob, a wide-brimmed hat and wearing large round sunglasses. He holds a squirming green frog above the steaming pot with one hand. His long, white beard flows down into the cauldron. - prompt: w1z4rd_crtnf4c3, a 2d animation cartoon noir scene set in a dimly lit private investigator’s office at night. Mac the alien as the detective, clad in a classic trench coat and fedora, sits behind a cluttered wooden desk, illuminated by the soft glow of a single desk lamp. Smoke from his cigarette curls lazily in the air, mingling with the shadows cast by the venetian blinds, through which faint streaks of neon light filter in from the city outside. His weary expression and furrowed brow suggest he’s deep in thought. The room is filled with subtle details—a rotary phone, a half-open file cabinet, and a coat rack—evoking the gritty charm of a classic noir detective story. - prompt: w1z4rd_crtnf4c3, cartoon of a xenomorph from Alien coming up from the toilet bowl in a public bathroom - steps: 24 - scale: 5 - prompt: w1z4rd_crtnf4c3, 2d cartoon of an awkward school portrait featuring a smiling teenage boy with braces, wearing a red plaid sweater vest over a light blue collared shirt. His neatly combed blonde hair and wide, slightly goofy grin add to the lighthearted, nostalgic charm of the image. - prompt: w1z4rd_crtnf4c3, cartoon Mona Lisa with a small smile and large eyes - prompt: w1z4rd_crtnf4c3, Symbiote in an enchanted castle, Bathing the dog in a bath tub. innocent eyes, open mouth, aqualine nose. - prompt: w1z4rd_crtnf4c3, cartoon Darth Vader feeling awkward at the gym, he is wearing a tank top, a headband and red shorts. - prompt: w1z4rd_crtnf4c3, Doctor Strange in an enchanted castle, warming hands by a fire. sorrowful eyes, scowling deeply, glowing nose. - prompt: w1z4rd_crtnf4c3, Peter Pan in a basement, Working on a computer. bored eyes, smiling wistfully, witches' nose. - steps: 24 - scale: 5 - prompt: w1z4rd_crtnf4c3, A fat man dressed in a tailored amber-brown corduroy suit and a deep burgundy turtleneck sweater stands confidently in a mid-century modern living room. The room features a sleek, minimalist aesthetic with clean lines and iconic mid-century furniture pieces - steps: 28 - prompt: w1z4rd_crtnf4c3, cartoon statue of liberty with big eyes - seed: 93411671 - steps: 28 - prompt: w1z4rd_crtnf4c3, a cartoon ladybug with large, expressive eyes perched on a vibrant green leaf - seed: 86835527 - steps: 28 - prompt: w1z4rd_crtnf4c3, cartoon jesus christ with big eyes, halo - seed: 16314358 - steps: 28 - prompt: w1z4rd_crtnf4c3, cartoon betty boop with big eyes - seed: 94321538 - steps: 28 - prompt: w1z4rd_crtnf4c3, cartoon bart simpson with big eyes - seed: 61321017 - steps: 28 - prompt: w1z4rd_crtnf4c3, cartoon hello kitty with big eyes - seed: 90617417 - steps: 28 - prompt: w1z4rd_crtnf4c3, cartoon batman with big eyes - seed: 11705481 - steps: 28 - prompt: w1z4rd_crtnf4c3, cartoon couple with big eyes kissing - seed: 16231649 - steps: 28 - prompt: w1z4rd_crtnf4c3, cartoon albert einstein with big eyes - seed: 63614652 ## Integration Header Prepare ```bash # Sign up Wiro dashboard and create project export YOUR_API_KEY="{{useSelectedProjectAPIKey}}"; export YOUR_API_SECRET="XXXXXXXXX"; # unix time or any random integer value export NONCE=$(date +%s); # hmac-SHA256 (YOUR_API_SECRET+Nonce) with YOUR_API_KEY export SIGNATURE="$(echo -n "${YOUR_API_SECRET}${NONCE}" | openssl dgst -sha256 -hmac "${YOUR_API_KEY}")"; ``` ## Run Command - Make HTTP Post Request ```bash curl -X POST "https://api.wiro.ai/v1/Run/WizardWhitebeard/Big-Eyed-Cartoon-Faces" -H "Content-Type: multipart/form-data" -H "x-api-key: ${YOUR_API_KEY}" -H "x-nonce: ${NONCE}" -H "x-signature: ${SIGNATURE}" -d '{ "prompt": "w1z4rd_crtnf4c3, morbidly obese Donald Trump speaking at the Republican National Convention, wearing a red cap that say \"AMERICA'S WORST\"", "samples": 1, "steps": 20, "scale": "1", "seed": "3389138199", "width": 1024, "height": 1024, "callbackUrl": "You can provide a callback URL; Wiro will send a POST request to it when the task is completed." }'; ``` ## Run Command - Response ```json { "errors": [], "taskid": "2221", "socketaccesstoken": "eDcCm5yyUfIvMFspTwww49OUfgXkQt", "result": true } ``` ## Get Task Detail - Make HTTP Post Request ```bash curl -X POST "https://api.wiro.ai/v1/Task/Detail" -H "Content-Type: multipart/form-data" -H "x-api-key: ${YOUR_API_KEY}" -H "x-nonce: ${NONCE}" -H "x-signature: ${SIGNATURE}" -d '{ "tasktoken": 'eDcCm5yyUfIvMFspTwww49OUfgXkQt', }'; ``` ## Get Task Detail - Response ```json { "total": "1", "errors": [], "tasklist": [ { "id": "2221", "uuid": "15bce51f-442f-4f44-a71d-13c6374a62bd", "socketaccesstoken": "eDcCm5yyUfIvMFspTwww49OUfgXkQt", "parameters": {}, "debugoutput": "", "debugerror": "", "starttime": "1734513809", "endtime": "1734513813", "elapsedseconds": "6.0000", "status": "task_postprocess_end", "createtime": "1734513807", "canceltime": "0", "assigntime": "1734513807", "accepttime": "1734513807", "preprocessstarttime": "1734513807", "preprocessendtime": "1734513807", "postprocessstarttime": "1734513813", "postprocessendtime": "1734513814", "outputs": [ { "id": "6bc392c93856dfce3a7d1b4261e15af3", "name": "0.png", "contenttype": "image/png", "parentid": "6c1833f39da71e6175bf292b18779baf", "uuid": "15bce51f-442f-4f44-a71d-13c6374a62bd", "size": "202472", "addedtime": "1734513812", "modifiedtime": "1734513812", "accesskey": "dFKlMApaSgMeHKsJyaDeKrefcHahUK", "url": "https://cdn1.wiro.ai/6a6af820-c5050aee-40bd7b83-a2e186c6-7f61f7da-3894e49c-fc0eeb66-9b500fe2/0.png" } ], "size": "202472" } ], "result": true } ``` ## Task Status Information This section defines the possible task status values returned by the API when polling for task completion. ### Completed Task Statuses (Polling can stop) These indicate that the task has reached a terminal state — either success or failure. Once any of these is received, polling should stop. - task_postprocess_end : Task completed successfully and post-processing is done. - task_cancel : Task was cancelled by the user or system. ### Running Task Statuses (Continue polling) These statuses indicate that the task is still in progress. Polling should continue if one of these is returned. - task_queue : Task is waiting in the queue. - task_accept : Task has been accepted for processing. - task_assign : Task is being assigned to a worker. - task_preprocess_start : Preprocessing is starting. - task_preprocess_end : Preprocessing is complete. - task_start : Task execution has started. - task_output : Output is being generated.