Dreambooth V4 Reload Model Endpoint
Overview
The Dreambooth Reload Model API is used to reload an idle model that has not been used for more than 7 days.
After 7 days of inactivity a model will be deleted from the inference server.
To reload a model and start using it again, you can make an API call to the Reload Model endpoint.
caution
It will take 2 minutes to reload a model.
Request
--request POST 'https://stablediffusionapi.com/api/v4/dreambooth/model_reload' \
Send a POST
request to https://stablediffusionapi.com/api/v4/dreambooth/model_reload endpoint to reload a specific model specified by the model_id parameter in the request body.
Attributes
Parameter | Description |
---|---|
key | Your API Key used for request authorization |
model_id | The ID of the model to be reloaded. |
Example
Body
Body Raw
{
"key": "",
"model_id": "model_id"
}
Request
- JS
- PHP
- NODE
- PYTHON
- JAVA
var myHeaders = new Headers();
myHeaders.append("Content-Type", "application/json");
var raw = JSON.stringify({
"key": "",
"model_id": "model_id"
});
var requestOptions = {
method: 'POST',
headers: myHeaders,
body: raw,
redirect: 'follow'
};
model_reload("https://stablediffusionapi.com/api/v4/dreambooth/model_reload", requestOptions)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log('error', error));
<?php
$payload = [
"key" => "",
"model_id" => "model_id"
];
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://stablediffusionapi.com/api/v4/dreambooth/model_reload',
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://stablediffusionapi.com/api/v4/dreambooth/model_reload',
'headers': {
'Content-Type': 'application/json'
},
body: JSON.stringify({
"key": "",
"model_id": "model_id"
})
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
import requests
import json
url = "https://stablediffusionapi.com/api/v4/dreambooth/model_reload"
payload = json.dumps({
"key": "",
"model_id": "model_id"
})
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\": \"\",\n \"model_id\": \"model_id\"\n}");
Request request = new Request.Builder()
.url("https://stablediffusionapi.com/api/v4/dreambooth/model_reload")
.method("POST", body)
.addHeader("Content-Type", "application/json")
.build();
Response response = client.newCall(request).execute();