Add NAI Diffusion 3 model
This commit is contained in:
parent
9e48d807cc
commit
e753246373
|
@ -1180,6 +1180,10 @@ async function loadNovelModels() {
|
||||||
}
|
}
|
||||||
|
|
||||||
return [
|
return [
|
||||||
|
{
|
||||||
|
value: 'nai-diffusion-3',
|
||||||
|
text: 'NAI Diffusion Anime V3',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
value: 'nai-diffusion-2',
|
value: 'nai-diffusion-2',
|
||||||
text: 'NAI Diffusion Anime V2',
|
text: 'NAI Diffusion Anime V2',
|
||||||
|
|
|
@ -268,12 +268,20 @@ function registerEndpoints(app, jsonParser) {
|
||||||
// NAI handholding for prompts
|
// NAI handholding for prompts
|
||||||
ucPreset: 0,
|
ucPreset: 0,
|
||||||
qualityToggle: false,
|
qualityToggle: false,
|
||||||
|
add_original_image: false,
|
||||||
|
controlnet_strength: 1,
|
||||||
|
dynamic_thresholding: false,
|
||||||
|
legacy: false,
|
||||||
|
sm: false,
|
||||||
|
sm_dyn: false,
|
||||||
|
uncond_scale: 1,
|
||||||
},
|
},
|
||||||
}),
|
}),
|
||||||
});
|
});
|
||||||
|
|
||||||
if (!generateResult.ok) {
|
if (!generateResult.ok) {
|
||||||
console.log('NovelAI returned an error.', generateResult.statusText);
|
const text = await generateResult.text();
|
||||||
|
console.log('NovelAI returned an error.', generateResult.statusText, text);
|
||||||
return response.sendStatus(500);
|
return response.sendStatus(500);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue