Guest



Sign inSignup
  • Home
  • Dashboard
  • Tools
  • Store
  • Pricing

Welcome

HomeDashboardToolsStore
Use cases
Human Resources
Retail & E-commerce
Interior Design
Fashion AI
Creative Content Solutions
Sports & Fitness
GenAI Video Tools
PricingDocumentation
Guest



Sign inSignup

Task History

  • Runnings
  • Models
  • Trains

You don't have task yet.

Go to Tools

Welcome

  • Tools
  • Dark_infinity/Deep-Dark-Anime
Tools
Task History

Dark_infinity/ Deep-Dark-Anime

1842runs
0Comments
Licence
About this license
CreativeML Open RAIL++-MView LICENSE
AddendumView LICENSE

API Sample: Dark_infinity/Deep-Dark-Anime

You don't have any projects yet. To be able to use our api service effectively, please sign in/up and create a project.

Get your api key
  • curl
  • nodejs
  • csharp
  • php
  • swift
  • dart
  • kotlin
  • go
  • python

Prepare Authentication Signature

                          
  //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}")";
      
                        

Create a New Folder - Make HTTP Post Request

Create a New Folder - Response

Upload a File to the Folder - Make HTTP Post Request

Upload a File to the Folder - Response

Run Command - Make HTTP Post Request

                          
  curl -X POST "{{apiUrl}}/Run/{{toolSlugOwner}}/{{toolSlugProject}}"  \
  -H "Content-Type: {{contentType}}" \
  -H "x-api-key: ${YOUR_API_KEY}" \
  -H "x-nonce: ${NONCE}" \
  -H "x-signature: ${SIGNATURE}" \
  -d '{{toolParameters}}';

      
                        

Run Command - Response

                          
  //response body
  {
      "errors": [],
      "taskid": "2221",
      "socketaccesstoken": "eDcCm5yyUfIvMFspTwww49OUfgXkQt",
      "result": true
  }
      
                        

Get Task Detail - Make HTTP Post Request

                          
  curl -X POST "{{apiUrl}}/Task/Detail"  \
  -H "Content-Type: {{contentType}}" \
  -H "x-api-key: ${YOUR_API_KEY}" \
  -H "x-nonce: ${NONCE}" \
  -H "x-signature: ${SIGNATURE}" \
  -d '{
    "tasktoken": 'eDcCm5yyUfIvMFspTwww49OUfgXkQt',
  }';

      
                        

Get Task Detail - Response

                          
  //response body
  {
    "total": "1",
    "errors": [],
    "tasklist": [
        {
            "id": "2221",
            "uuid": "15bce51f-442f-4f44-a71d-13c6374a62bd",
            "name": "",
            "socketaccesstoken": "eDcCm5yyUfIvMFspTwww49OUfgXkQt",
            "parameters": {
                "inputImage": "https://api.wiro.ai/v1/File/mCmUXgZLG1FNjjjwmbtPFr2LVJA112/inputImage-6060136.png"
            },
            "debugoutput": "",
            "debugerror": "",
            "starttime": "1734513809",
            "endtime": "1734513813",
            "elapsedseconds": "6.0000",
            "status": "task_postprocess_end",
            "cps": "0.000585000000",
            "totalcost": "0.003510000000",
            "guestid": null,
            "projectid": "699",
            "modelid": "598",
            "description": "",
            "basemodelid": "0",
            "runtype": "model",
            "modelfolderid": "",
            "modelfileid": "",
            "callbackurl": "",
            "marketplaceid": null,
            "createtime": "1734513807",
            "canceltime": "0",
            "assigntime": "1734513807",
            "accepttime": "1734513807",
            "preprocessstarttime": "1734513807",
            "preprocessendtime": "1734513807",
            "postprocessstarttime": "1734513813",
            "postprocessendtime": "1734513814",
            "pexit": "0",
            "categories": "["tool","image-to-image","quick-showcase","compare-landscape"]",
            "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",
                    "foldercount": "0",
                    "filecount": "0",
                    "ispublic": 0,
                    "expiretime": null,
                    "url": "https://cdn1.wiro.ai/6a6af820-c5050aee-40bd7b83-a2e186c6-7f61f7da-3894e49c-fc0eeb66-9b500fe2/0.png"
                }
            ],
            "size": "202472"
        }
    ],
    "result": true
  }
      
                        

Get Task Process Information and Results with Socket Connection

                          
<script type="text/javascript">
  window.addEventListener('load',function() {
    //Get socketAccessToken from task run response
    var SocketAccessToken = 'eDcCm5yyUfIvMFspTwww49OUfgXkQt';
    WebSocketConnect(SocketAccessToken);
  });

  //Connect socket with connection id and register task socket token
  async function WebSocketConnect(accessTokenFromAPI) {
    if ("WebSocket" in window) {
        var ws = new WebSocket("wss://socket.wiro.ai/v1");
        ws.onopen = function() {  
          //Register task socket token which has been obtained from task run API response
          ws.send('{"type": "task_info", "tasktoken": "' + accessTokenFromAPI + '"}'); 
        };

        ws.onmessage = function (evt) { 
          var msg = evt.data;

          try {
              var debugHtml = document.getElementById('debug');
              debugHtml.innerHTML = debugHtml.innerHTML + "\n" + msg;

              var msgJSON = JSON.parse(msg);
              console.log('msgJSON: ', msgJSON);

              if(msgJSON.type != undefined)
              {
                console.log('msgJSON.target: ',msgJSON.target);
                switch(msgJSON.type) {
                    case 'task_queue':
                      console.log('Your task has been waiting in the queue.');
                    break;
                    case 'task_accept':
                      console.log('Your task has been accepted by the worker.');
                    break;
                    case 'task_preprocess_start':
                      console.log('Your task preprocess has been started.');
                    break;
                    case 'task_preprocess_end':
                      console.log('Your task preprocess has been ended.');
                    break;
                    case 'task_assign':
                      console.log('Your task has been assigned GPU and waiting in the queue.');
                    break;
                    case 'task_start':
                      console.log('Your task has been started.');
                    break;
                    case 'task_output':
                      console.log('Your task has been started and printing output log.');
                      console.log('Log: ', msgJSON.message);
                    break;
                    case 'task_error':
                      console.log('Your task has been started and printing error log.');
                      console.log('Log: ', msgJSON.message);
                    break;
                   case 'task_output_full':
                      console.log('Your task has been completed and printing full output log.');
                    break;
                    case 'task_error_full':
                      console.log('Your task has been completed and printing full error log.');
                    break;
                    case 'task_end':
                      console.log('Your task has been completed.');
                    break;
                    case 'task_postprocess_start':
                      console.log('Your task postprocess has been started.');
                    break;
                    case 'task_postprocess_end':
                      console.log('Your task postprocess has been completed.');
                      console.log('Outputs: ', msgJSON.message);
                      //output files will add ui
                      msgJSON.message.forEach(function(currentValue, index, arr){
                          console.log(currentValue);
                          var filesHtml = document.getElementById('files');
                          filesHtml.innerHTML = filesHtml.innerHTML + '<img src="' + currentValue.url + '" style="height:300px;">'
                      });
                    break;
                }
              }
          } catch (e) {
            console.log('e: ', e);
            console.log('msg: ', msg);
          }
        };

        ws.onclose = function() { 
          alert("Connection is closed..."); 
        };
    } else {              
        alert("WebSocket NOT supported by your Browser!");
    }
  }
</script>
      
                        

Prepare UI Elements Inside Body Tag

                          
  <div id="files"></div>
  <pre id="debug"></pre>
      
                        

Tell us about any details you want to generate

Specify things to not see in the output

Your request will cost $0.0006 per second.

(Total cost varies depending on the request’s execution time.)
1744820687 Report This Model

I’ve noticed more than one comment on my more mature themed models stating that though the artist preferred to make sfw art, the nsfw models were better at anatomy (hands, feet, faces, etc. – not what you perverts are thinking). So, I’ve decided to give myself a challenge: to create a sfw version of Deep Dark Hentai Mix that still has all the anatomical knowledge of the more perverse checkpoint, but with the additional versatility and range of a model not focused solely on fulfilling perverse desires. 

Version 1.0 is the first version to pass alpha and beta testing. It is the first attempt, so let me know if anything odd happens when you use it. It creates great images, as demonstrated by the model’s showcase, which are unaltered and undoctored output from the most recent test runs. Note while this model was not designed to create images with mature themes, it will generate nudity. If that's what you are going for, I'd suggest turning to Deep Dark Hentai instead as it far less restrained.

Usage Tips

  • This model appears to be pretty flexible in terms of prompting. There are no special rules to get certain images and it knows a good range of anime 2D and 3D styles.

  • As version 1 is not a more detali model, any sampler should work. I’ve been using 30 to 40 steps and a range of CFG values from 5 to 12. 

  • This model will produce nudity. Treat it like a 1.5 model and use negative prompting to control it.

  • I'll add more tips as I figure them out. If you figure out some point, post it in the comments, and I'll add it to the description.

Model Credits

The following models have been or are currently used in a version of Deep Dark Hentai Mix. Credit goes to the model creators (and of course, the creators of the models that were used in their merges/training as well).

  • ShikiAnimeXL https://civitai.com/models/119163/shikianimexl

  • Hentai Mix XL - Road to freedom https://civitai.com/models/199554?modelVersionId=296678

  • Hentai Mix XL - World is flat! - https://civitai.com/models/289879/hentai-mix-xl-world-is-flat

  • Realistic Freedom - SFW and NSFW - https://civitai.com/models/138977?modelVersionId=270633

  • duchaitenReal3dNSFW_v10 - https://civitai.com/models/247266/duchaiten-real3d-nsfw-xl?modelVersionId=286445

  • betterThanWords_v30 https://civitai.com/models/149359?modelVersionId=233092

  • And a few other models that have vanished now and are no longer posted on model cards.

Legal Stuff

AI model output may sometimes be unpredictable and is not guaranteed to match the input prompt nor to be of any given nature or quality. Do not attempt to generate content that is illegal in your legal jurisdiction or within your country or district of residence. By using this model, you agree that the creator of this model shall in no event be responsible or liable to you or to any third party, whether under contract, warranty, tort (including negligence), strict liability, indemnity or other theory, for any direct, indirect, special, incidental, consequential, exemplary, liquidated or punitive damages or any other damages, including but not limited to loss of profit, revenue or business, cost of substitute procurement, arising in whole or in part from your use of (or inability to use) the model.

Model Restrictions:

To be clear, this model is a derivative of the SDXL 1.0 model and the following restrictions are part of the 2023 Stability AI CreativeML Open RAIL++-M License dated July 26, 2023, with applies to this model and all models that use any component or derivatives of this model. You agree not to use the Model or Derivatives of the Model:

  • In any way that violates any applicable national, federal, state, local or international law or regulation; 

  • For the purpose of exploiting, harming or attempting to exploit or harm minors in any way; 

  • To generate or disseminate verifiably false information and/or content with the purpose of harming others; 

  • To generate or disseminate personal identifiable information that can be used to harm an individual; 

  • To defame, disparage or otherwise harass others; 

  • For fully automated decision making that adversely impacts an individual’s legal rights or otherwise creates or modifies a binding, enforceable obligation; 

  • For any use intended to or which has the effect of discriminating against or harming individuals or groups based on online or offline social behavior or known or predicted personal or personality characteristics; 

  • To exploit any of the vulnerabilities of a specific group of persons based on their age, social, physical or mental characteristics, in order to materially distort the behavior of a person pertaining to that group in a manner that causes or is likely to cause that person or another person physical or psychological harm; For any use intended to or which has the effect of discriminating against individuals or groups based on legally protected characteristics or categories; 

  • To provide medical advice and medical results interpretation; 

  • To generate or disseminate information for the purpose to be used for administration of justice, law enforcement, immigration or asylum processes, such as predicting an individual will commit fraud/crime commitment (e.g. by text profiling, drawing causal relationships between assertions made in documents, indiscriminate and arbitrarily-targeted use).

Clarifications on the permissible use of this model:

  • This model is a merge. Therefore it inherits the permissions and restrictions of all models used in its creation.

  • You may not make merges, extractions, or derivatives of this model and use a less restrictive license than the 2023 Stability AI CreativeML Open RAIL++-M License.

  • This model may be run and hosted for download on Civitai.com. At this time, no other organization or individual is authorized to host or distribute this model.

  • You may not sell this model or any of this model’s merges or derivatives.

  • You must credit this model’s creator if you use this model to create a new merged, mixed, trained, or extracted model.

  • You may sell images you generate with this model.

  • You may share merges using this model as long as any merge has the same or more restrictive permissions.

Tools

View All

We couldn't find any matching results.

King_Hatchet/Vapor-Dream-FLUX

Vapor Dream - FLUX
Run time: 1 second
1048 runs
0

desertPixel/Hyper-Graffiti-Toon-SDXL

Hyper Graffiti Toon SDXL
Run time: 1 second
1386 runs
0

King_Hatchet/Primal-Pixels-FLUX

Primal Pixels - FLUX
Run time: 1 second
1697 runs
0

King_Hatchet/Classic-Black-Light-FLUX

Classic Black Light - FLUX
Run time: 1 second
2161 runs
0

King_Hatchet/SereneXL

SereneXL
Run time: 1 second
2125 runs
0

King_Hatchet/Zenescope-Flux

Zenescope - Flux
Run time: 1 second
1884 runs
0

Select Language

Logo of nvidia programLogo of nvidia program
Wiro AI brings machine learning easily accessible to all in the cloud.
  • WIRO
  • About
  • Careers
  • Contact
  • Language Language
  • Product
  • Tools
  • Pricing
  • Roadmap
  • Changelog
  • Status
  • Documentation
  • Introduction
  • Start Your First Project
  • Example Projects

2023 © Wiro.ai | Terms of Service & Privacy Policy