Enterprise: Load Vae
Overview
The Enterprise: This endpoint helps to load vae
Request
--request POST 'https://modelslab.com/api/v1/enterprise/load_vae' \
Send a POST
request to https://modelslab.com/api/v1/enterprise/load_vae endpoint to load vae
Attributes
Parameter | Description |
---|---|
key | Your enterprise API Key used for request authorization. |
webhook | Set an URL to get a POST API call once the image generation is complete. |
vae_id | id of the vae. |
vae_url | url of the vae |
vae_type | type of the vae, available options are : "diffusers", "safetensors", "pt" |
Example
Body
Body Raw
{
"key": "enterprise_api_key",
"webhook": "http://webhook-url.com",
"vae_id": "vae-kl-f8-anime2",
"vae_url": "bullhug/kl-f8-anime2",
"vae_type": "diffusers"
}
Request
- JS
- PHP
- NODE
- PYTHON
- JAVA
var myHeaders = new Headers();
myHeaders.append("Content-Type", "application/json");
var raw = JSON.stringify({
"key": "",
"webhook": "http://webhook-url.com",
"vae_id": "vae-kl-f8-anime2",
"vae_url": "bullhug/kl-f8-anime2",
"vae_type": "diffusers"
});
var requestOptions = {
method: 'POST',
headers: myHeaders,
body: raw,
redirect: 'follow'
};
model_reload("https://modelslab.com/api/v1/enterprise/load_vae", requestOptions)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log('error', error));
<?php
$payload = [
"key" => "",
"webhook" => "http://webhook-url.com",
"vae_id" => "vae-kl-f8-anime2",
"vae_url" => "bullhug/kl-f8-anime2",
"vae_type" => "diffusers"
];
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://modelslab.com/api/v1/enterprise/load_vae',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS => json_encode($payload),
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
var request = require('request');
var options = {
'method': 'POST',
'url': 'https://modelslab.com/api/v1/enterprise/load_vae',
'headers': {
'Content-Type': 'application/json'
},
body: JSON.stringify({
"key": "",
"webhook": "http://webhook-url.com",
"vae_id": "vae-kl-f8-anime2",
"vae_url": "bullhug/kl-f8-anime2",
"vae_type": "diffusers"
})
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
import requests
import json
url = "https://modelslab.com/api/v1/enterprise/load_vae"
payload = json.dumps({
"key": "",
"webhook": "",
"vae_id": "vae-kl-f8-anime2",
"vae_url": "bullhug/kl-f8-anime2",
"vae_type": "diffusers"
})
headers = {
'Content-Type': 'application/json'
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
OkHttpClient client = new OkHttpClient().newBuilder()
.build();
MediaType mediaType = MediaType.parse("application/json");
RequestBody body = RequestBody.create(mediaType, "{\n \"key\": \"enterprise_api_key\",\n \"webhook\": \"http://webhook-url.com\",\n \"vae_id\": \"vae-kl-f8-anime2\",\n \"vae_url\": \"bullhug/kl-f8-anime2\",\n \"vae_type\": \"diffusers\"\n}");
Request request = new Request.Builder()
.url("https://modelslab.com/api/v1/enterprise/load_vae")
.method("GET", body)
.addHeader("Content-Type", "application/json")
.build();
Response response = client.newCall(request).execute();
Response
{
"status": "success",
"message": "VAE load started"
}