mirror of
https://github.com/karl0ss/ai_image_frame_server.git
synced 2025-07-05 14:06:07 +01:00
Compare commits
No commits in common. "main" and "0.2.3" have entirely different histories.
@ -1,5 +1,5 @@
|
|||||||
[tool.bumpversion]
|
[tool.bumpversion]
|
||||||
current_version = "0.2.8"
|
current_version = "0.2.3"
|
||||||
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
|
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
|
||||||
serialize = ["{major}.{minor}.{patch}"]
|
serialize = ["{major}.{minor}.{patch}"]
|
||||||
search = "{current_version}"
|
search = "{current_version}"
|
||||||
|
1
.gitignore
vendored
1
.gitignore
vendored
@ -10,4 +10,3 @@ prompts_log.jsonl
|
|||||||
publish.sh
|
publish.sh
|
||||||
test.py
|
test.py
|
||||||
.vscode/launch.json
|
.vscode/launch.json
|
||||||
favourites.json
|
|
||||||
|
@ -164,7 +164,7 @@ def create_image(prompt: str | None = None, model: str = "Random") -> None:
|
|||||||
seed_param="seed",
|
seed_param="seed",
|
||||||
save_node="CivitAI Image Saver",
|
save_node="CivitAI Image Saver",
|
||||||
save_param="filename",
|
save_param="filename",
|
||||||
model_node="UnetLoaderGGUFAdvancedDisTorchMultiGPU",
|
model_node="Unet Loader (GGUF)",
|
||||||
model_param="unet_name",
|
model_param="unet_name",
|
||||||
model=model
|
model=model
|
||||||
)
|
)
|
||||||
|
@ -3,7 +3,6 @@ import logging
|
|||||||
import litellm
|
import litellm
|
||||||
import nest_asyncio
|
import nest_asyncio
|
||||||
from libs.generic import load_recent_prompts, load_config
|
from libs.generic import load_recent_prompts, load_config
|
||||||
import re
|
|
||||||
nest_asyncio.apply()
|
nest_asyncio.apply()
|
||||||
|
|
||||||
logging.basicConfig(level=logging.INFO)
|
logging.basicConfig(level=logging.INFO)
|
||||||
@ -75,10 +74,5 @@ def create_prompt_on_openwebui(prompt: str, topic: str = "random") -> str:
|
|||||||
# api_key=user_config["openwebui"]["api_key"],
|
# api_key=user_config["openwebui"]["api_key"],
|
||||||
# )
|
# )
|
||||||
# prompt = response["choices"][0]["message"]["content"].strip('"')
|
# prompt = response["choices"][0]["message"]["content"].strip('"')
|
||||||
match = re.search(r'"([^"]+)"', prompt)
|
|
||||||
if not match:
|
|
||||||
match = re.search(r":\s*\n*\s*(.+)", prompt)
|
|
||||||
if match:
|
|
||||||
prompt = match.group(1)
|
|
||||||
logging.debug(prompt)
|
logging.debug(prompt)
|
||||||
return prompt
|
return prompt.split(": ")[-1]
|
@ -1,50 +1,15 @@
|
|||||||
from flask import Blueprint, render_template, jsonify, request
|
from flask import Blueprint, render_template
|
||||||
import os
|
import os
|
||||||
import json
|
|
||||||
|
|
||||||
bp = Blueprint("gallery_routes", __name__)
|
bp = Blueprint("gallery_routes", __name__)
|
||||||
image_folder = "./output"
|
image_folder = "./output"
|
||||||
favourites_file = "./favourites.json"
|
|
||||||
|
|
||||||
def get_favourites():
|
|
||||||
if not os.path.exists(favourites_file):
|
|
||||||
return []
|
|
||||||
with open(favourites_file, 'r') as f:
|
|
||||||
return json.load(f)
|
|
||||||
|
|
||||||
def save_favourites(favourites):
|
|
||||||
with open(favourites_file, 'w') as f:
|
|
||||||
json.dump(favourites, f)
|
|
||||||
|
|
||||||
@bp.route("/images", methods=["GET"])
|
@bp.route("/images", methods=["GET"])
|
||||||
def gallery():
|
def gallery():
|
||||||
favourites = get_favourites()
|
|
||||||
images = [
|
images = [
|
||||||
{"filename": f, "favourited": f in favourites}
|
{"filename": f}
|
||||||
for f in os.listdir(image_folder)
|
for f in os.listdir(image_folder)
|
||||||
if f.lower().endswith(("png", "jpg", "jpeg", "gif"))
|
if f.lower().endswith(("png", "jpg", "jpeg", "gif"))
|
||||||
]
|
]
|
||||||
images = sorted(images, key=lambda x: os.path.getmtime(os.path.join(image_folder, x["filename"])), reverse=True)
|
images = sorted(images, key=lambda x: os.path.getmtime(os.path.join(image_folder, x["filename"])), reverse=True)
|
||||||
return render_template("gallery.html", images=images)
|
return render_template("gallery.html", images=images)
|
||||||
|
|
||||||
@bp.route("/favourites", methods=["GET"])
|
|
||||||
def get_favourites_route():
|
|
||||||
return jsonify(get_favourites())
|
|
||||||
|
|
||||||
@bp.route("/favourites/toggle", methods=["POST"])
|
|
||||||
def toggle_favourite():
|
|
||||||
data = request.get_json()
|
|
||||||
filename = data.get("filename")
|
|
||||||
if not filename:
|
|
||||||
return jsonify({"status": "error", "message": "Filename missing"}), 400
|
|
||||||
|
|
||||||
favourites = get_favourites()
|
|
||||||
is_favourited = False
|
|
||||||
if filename in favourites:
|
|
||||||
favourites.remove(filename)
|
|
||||||
else:
|
|
||||||
favourites.append(filename)
|
|
||||||
is_favourited = True
|
|
||||||
|
|
||||||
save_favourites(favourites)
|
|
||||||
return jsonify({"status": "success", "favourited": is_favourited})
|
|
||||||
|
@ -13,6 +13,7 @@ def config_editor():
|
|||||||
config = configparser.ConfigParser()
|
config = configparser.ConfigParser()
|
||||||
config.read(CONFIG_PATH)
|
config.read(CONFIG_PATH)
|
||||||
|
|
||||||
|
# Load from config directly — no helper functions needed anymore
|
||||||
topics = config.get('comfyui', 'topics', fallback='').split(',')
|
topics = config.get('comfyui', 'topics', fallback='').split(',')
|
||||||
general_models = config.get('comfyui', 'models', fallback='').split(',')
|
general_models = config.get('comfyui', 'models', fallback='').split(',')
|
||||||
flux_models = config.get('comfyui:flux', 'models', fallback='').split(',')
|
flux_models = config.get('comfyui:flux', 'models', fallback='').split(',')
|
||||||
@ -63,12 +64,7 @@ def config_editor():
|
|||||||
continue
|
continue
|
||||||
form_key = f"{section}:{key}"
|
form_key = f"{section}:{key}"
|
||||||
if form_key in request.form:
|
if form_key in request.form:
|
||||||
new_value = request.form[form_key]
|
config[section][key] = request.form[form_key]
|
||||||
# Prevent overwriting masked secrets unless actually changed
|
|
||||||
if key in ('password_for_auth', 'api_key') and new_value == "********":
|
|
||||||
continue # Skip overwriting
|
|
||||||
config[section][key] = new_value
|
|
||||||
|
|
||||||
|
|
||||||
# Save everything at once
|
# Save everything at once
|
||||||
with open(CONFIG_PATH, 'w') as configfile:
|
with open(CONFIG_PATH, 'w') as configfile:
|
||||||
@ -91,8 +87,8 @@ def config_editor():
|
|||||||
|
|
||||||
return render_template(
|
return render_template(
|
||||||
'settings.html',
|
'settings.html',
|
||||||
topics=sorted(topics,key=str.lower),
|
topics=topics,
|
||||||
models=sorted(general_models + flux_models,key=str.lower),
|
models=general_models + flux_models,
|
||||||
config_sections=filtered_config.keys(),
|
config_sections=filtered_config.keys(),
|
||||||
config_values=filtered_config
|
config_values=filtered_config
|
||||||
)
|
)
|
||||||
|
@ -116,22 +116,6 @@
|
|||||||
/* lower than lightbox (999) */
|
/* lower than lightbox (999) */
|
||||||
}
|
}
|
||||||
|
|
||||||
.favourites-button {
|
|
||||||
position: fixed;
|
|
||||||
top: 20px;
|
|
||||||
right: 120px;
|
|
||||||
z-index: 500;
|
|
||||||
}
|
|
||||||
|
|
||||||
.favourite-heart {
|
|
||||||
position: absolute;
|
|
||||||
top: 20px;
|
|
||||||
left: 30px;
|
|
||||||
font-size: 30px;
|
|
||||||
color: white;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.button-link {
|
.button-link {
|
||||||
background: #333;
|
background: #333;
|
||||||
color: white;
|
color: white;
|
||||||
@ -143,7 +127,6 @@
|
|||||||
transition: background 0.3s;
|
transition: background 0.3s;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
border: none;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.button-link:hover {
|
.button-link:hover {
|
||||||
@ -196,17 +179,15 @@
|
|||||||
|
|
||||||
<body>
|
<body>
|
||||||
<a href="/" class="button-link home-button">Home</a>
|
<a href="/" class="button-link home-button">Home</a>
|
||||||
<button class="button-link favourites-button" id="favourites-button" onclick="toggleFavouritesView()">Show Favourites</button>
|
|
||||||
|
|
||||||
<h1 id="page-title">Image Archive</h1>
|
<h1>Image Archive</h1>
|
||||||
|
|
||||||
<!-- Empty gallery container; images will be loaded incrementally -->
|
<!-- Empty gallery container; images will be loaded incrementally -->
|
||||||
<div class="gallery" id="gallery"></div>
|
<div class="gallery" id="gallery"></div>
|
||||||
|
|
||||||
<!-- Lightbox -->
|
<!-- Lightbox -->
|
||||||
<div class="lightbox" id="lightbox" tabindex="-1" onkeyup="handleLightboxKeys(event)">
|
<div class="lightbox" id="lightbox">
|
||||||
<span class="close" onclick="closeLightbox()">×</span>
|
<span class="close" onclick="closeLightbox()">×</span>
|
||||||
<span class="favourite-heart" id="favourite-heart" onclick="toggleFavourite()">♡</span>
|
|
||||||
<span class="arrow left" onclick="prevImage()">❮</span>
|
<span class="arrow left" onclick="prevImage()">❮</span>
|
||||||
<img id="lightbox-img" src="" />
|
<img id="lightbox-img" src="" />
|
||||||
<p id="lightbox-prompt"></p>
|
<p id="lightbox-prompt"></p>
|
||||||
@ -215,11 +196,11 @@
|
|||||||
|
|
||||||
<!-- Pass image filenames from Flask to JS -->
|
<!-- Pass image filenames from Flask to JS -->
|
||||||
<script>
|
<script>
|
||||||
let allImages = JSON.parse(`[
|
const allImages = [
|
||||||
{% for image in images %}
|
{% for image in images %}
|
||||||
{ "filename": "{{ image.filename }}", "favourited": {{ 'true' if image.favourited else 'false' }} }{% if not loop.last %},{% endif %}
|
{ filename: "{{ image.filename }}" },
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
]`);
|
];
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
@ -228,15 +209,12 @@
|
|||||||
let loadedCount = 0;
|
let loadedCount = 0;
|
||||||
let currentIndex = 0;
|
let currentIndex = 0;
|
||||||
const detailsCache = {}; // Cache for image details
|
const detailsCache = {}; // Cache for image details
|
||||||
let showingFavourites = false;
|
|
||||||
let filteredImages = allImages;
|
|
||||||
|
|
||||||
function createImageElement(image) {
|
function createImageElement(image) {
|
||||||
const img = document.createElement('img');
|
const img = document.createElement('img');
|
||||||
img.src = `/images/thumbnails/${image.filename}`;
|
img.src = `/images/thumbnails/${image.filename}`;
|
||||||
img.dataset.fullsrc = `/images/${image.filename}`;
|
img.dataset.fullsrc = `/images/${image.filename}`;
|
||||||
img.dataset.filename = image.filename;
|
img.dataset.filename = image.filename;
|
||||||
img.dataset.favourited = image.favourited;
|
|
||||||
img.loading = 'lazy';
|
img.loading = 'lazy';
|
||||||
img.style.cursor = 'pointer';
|
img.style.cursor = 'pointer';
|
||||||
img.style.borderRadius = '10px';
|
img.style.borderRadius = '10px';
|
||||||
@ -245,8 +223,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
function loadNextBatch() {
|
function loadNextBatch() {
|
||||||
const imagesToLoad = showingFavourites ? filteredImages : allImages;
|
const nextImages = allImages.slice(loadedCount, loadedCount + batchSize);
|
||||||
const nextImages = imagesToLoad.slice(loadedCount, loadedCount + batchSize);
|
|
||||||
nextImages.forEach(image => {
|
nextImages.forEach(image => {
|
||||||
const imgEl = createImageElement(image);
|
const imgEl = createImageElement(image);
|
||||||
gallery.appendChild(imgEl);
|
gallery.appendChild(imgEl);
|
||||||
@ -254,35 +231,12 @@
|
|||||||
loadedCount += nextImages.length;
|
loadedCount += nextImages.length;
|
||||||
}
|
}
|
||||||
|
|
||||||
function renderGallery() {
|
|
||||||
gallery.innerHTML = '';
|
|
||||||
loadedCount = 0;
|
|
||||||
loadNextBatch();
|
|
||||||
}
|
|
||||||
|
|
||||||
function toggleFavouritesView() {
|
|
||||||
showingFavourites = !showingFavourites;
|
|
||||||
const button = document.getElementById('favourites-button');
|
|
||||||
const pageTitle = document.getElementById('page-title');
|
|
||||||
if (showingFavourites) {
|
|
||||||
filteredImages = allImages.filter(img => img.favourited);
|
|
||||||
button.textContent = 'Show All';
|
|
||||||
pageTitle.textContent = 'Favourites';
|
|
||||||
} else {
|
|
||||||
filteredImages = allImages;
|
|
||||||
button.textContent = 'Show Favourites';
|
|
||||||
pageTitle.textContent = 'Image Archive';
|
|
||||||
}
|
|
||||||
renderGallery();
|
|
||||||
}
|
|
||||||
|
|
||||||
// Load initial batch
|
// Load initial batch
|
||||||
renderGallery();
|
loadNextBatch();
|
||||||
|
|
||||||
// Load more images when scrolling near bottom
|
// Load more images when scrolling near bottom
|
||||||
window.addEventListener('scroll', () => {
|
window.addEventListener('scroll', () => {
|
||||||
const imagesToLoad = showingFavourites ? filteredImages : allImages;
|
if (loadedCount >= allImages.length) return; // all loaded
|
||||||
if (loadedCount >= imagesToLoad.length) return; // all loaded
|
|
||||||
if ((window.innerHeight + window.scrollY) >= (document.body.offsetHeight - 100)) {
|
if ((window.innerHeight + window.scrollY) >= (document.body.offsetHeight - 100)) {
|
||||||
loadNextBatch();
|
loadNextBatch();
|
||||||
}
|
}
|
||||||
@ -297,45 +251,7 @@
|
|||||||
const images = getGalleryImages();
|
const images = getGalleryImages();
|
||||||
currentIndex = images.indexOf(imgEl);
|
currentIndex = images.indexOf(imgEl);
|
||||||
showImageAndLoadDetails(currentIndex);
|
showImageAndLoadDetails(currentIndex);
|
||||||
const lightbox = document.getElementById("lightbox");
|
document.getElementById("lightbox").style.display = "flex";
|
||||||
lightbox.style.display = "flex";
|
|
||||||
lightbox.focus();
|
|
||||||
}
|
|
||||||
|
|
||||||
function updateFavouriteHeart(isFavourited) {
|
|
||||||
const heart = document.getElementById('favourite-heart');
|
|
||||||
heart.innerHTML = isFavourited ? '♥' : '♡'; // solid vs outline heart
|
|
||||||
heart.style.color = isFavourited ? 'red' : 'white';
|
|
||||||
}
|
|
||||||
|
|
||||||
function toggleFavourite() {
|
|
||||||
const images = getGalleryImages();
|
|
||||||
const imgEl = images[currentIndex];
|
|
||||||
const filename = imgEl.dataset.filename;
|
|
||||||
|
|
||||||
fetch('/favourites/toggle', {
|
|
||||||
method: 'POST',
|
|
||||||
headers: { 'Content-Type': 'application/json' },
|
|
||||||
body: JSON.stringify({ filename: filename })
|
|
||||||
})
|
|
||||||
.then(response => response.json())
|
|
||||||
.then(data => {
|
|
||||||
if (data.status === 'success') {
|
|
||||||
const isFavourited = data.favourited;
|
|
||||||
imgEl.dataset.favourited = isFavourited;
|
|
||||||
updateFavouriteHeart(isFavourited);
|
|
||||||
|
|
||||||
const originalImage = allImages.find(img => img.filename === filename);
|
|
||||||
if (originalImage) {
|
|
||||||
originalImage.favourited = isFavourited;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (showingFavourites) {
|
|
||||||
filteredImages = allImages.filter(img => img.favourited);
|
|
||||||
renderGallery();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function showImageAndLoadDetails(index) {
|
function showImageAndLoadDetails(index) {
|
||||||
@ -343,10 +259,8 @@
|
|||||||
const imgEl = images[index];
|
const imgEl = images[index];
|
||||||
const filename = imgEl.dataset.filename;
|
const filename = imgEl.dataset.filename;
|
||||||
const fullsrc = imgEl.dataset.fullsrc;
|
const fullsrc = imgEl.dataset.fullsrc;
|
||||||
const isFavourited = imgEl.dataset.favourited === 'true';
|
|
||||||
|
|
||||||
document.getElementById("lightbox-img").src = fullsrc;
|
document.getElementById("lightbox-img").src = fullsrc;
|
||||||
updateFavouriteHeart(isFavourited);
|
|
||||||
|
|
||||||
if (detailsCache[filename]) {
|
if (detailsCache[filename]) {
|
||||||
document.getElementById("lightbox-prompt").textContent =
|
document.getElementById("lightbox-prompt").textContent =
|
||||||
@ -373,16 +287,12 @@
|
|||||||
|
|
||||||
function nextImage() {
|
function nextImage() {
|
||||||
const images = getGalleryImages();
|
const images = getGalleryImages();
|
||||||
const imagesToLoad = showingFavourites ? filteredImages : allImages;
|
if (currentIndex + 1 >= images.length && loadedCount < allImages.length) {
|
||||||
if (currentIndex + 1 >= images.length && loadedCount < imagesToLoad.length) {
|
|
||||||
loadNextBatch();
|
loadNextBatch();
|
||||||
// Wait briefly to ensure DOM updates
|
// Wait briefly to ensure DOM updates
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
const updatedImages = getGalleryImages();
|
currentIndex++;
|
||||||
if (currentIndex + 1 < updatedImages.length) {
|
showImageAndLoadDetails(currentIndex);
|
||||||
currentIndex++;
|
|
||||||
showImageAndLoadDetails(currentIndex);
|
|
||||||
}
|
|
||||||
}, 100);
|
}, 100);
|
||||||
} else {
|
} else {
|
||||||
currentIndex = (currentIndex + 1) % images.length;
|
currentIndex = (currentIndex + 1) % images.length;
|
||||||
@ -399,27 +309,6 @@
|
|||||||
|
|
||||||
function closeLightbox() {
|
function closeLightbox() {
|
||||||
document.getElementById("lightbox").style.display = "none";
|
document.getElementById("lightbox").style.display = "none";
|
||||||
if (showingFavourites) {
|
|
||||||
// Refresh the gallery if a favourite was removed
|
|
||||||
const currentImage = getGalleryImages()[currentIndex];
|
|
||||||
const wasFavourited = currentImage.dataset.favourited === 'true';
|
|
||||||
const originalImage = allImages.find(img => img.filename === currentImage.dataset.filename);
|
|
||||||
if (originalImage && !originalImage.favourited) {
|
|
||||||
renderGallery();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function handleLightboxKeys(e) {
|
|
||||||
if (e.key === 'f') {
|
|
||||||
toggleFavourite();
|
|
||||||
} else if (e.key === 'Escape') {
|
|
||||||
closeLightbox();
|
|
||||||
} else if (e.key === 'ArrowLeft') {
|
|
||||||
prevImage();
|
|
||||||
} else if (e.key === 'ArrowRight') {
|
|
||||||
nextImage();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
|
@ -161,19 +161,9 @@
|
|||||||
<option value="False" {% if value.lower()=='false' %}selected{% endif %}>False</option>
|
<option value="False" {% if value.lower()=='false' %}selected{% endif %}>False</option>
|
||||||
</select>
|
</select>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% if key in ['password_for_auth', 'api_key'] %}
|
|
||||||
<input type="text" name="{{ section }}:{{ key }}" value="********" placeholder="********">
|
|
||||||
{% elif value.lower() in ['true', 'false'] %}
|
|
||||||
<select name="{{ section }}:{{ key }}">
|
|
||||||
<option value="True" {% if value.lower()=='true' %}selected{% endif %}>True</option>
|
|
||||||
<option value="False" {% if value.lower()=='false' %}selected{% endif %}>False</option>
|
|
||||||
</select>
|
|
||||||
{% else %}
|
|
||||||
<input type="text" name="{{ section }}:{{ key }}" value="{{ value }}">
|
<input type="text" name="{{ section }}:{{ key }}" value="{{ value }}">
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
</div>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
1
|
1
|
||||||
],
|
],
|
||||||
"vae": [
|
"vae": [
|
||||||
"73",
|
"27",
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -15,6 +15,75 @@
|
|||||||
"title": "VAE Decode"
|
"title": "VAE Decode"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"22": {
|
||||||
|
"inputs": {
|
||||||
|
"clip_name1": "t5/t5xxl_fp8_e4m3fn.safetensors",
|
||||||
|
"clip_name2": "clip_l.safetensors",
|
||||||
|
"type": "flux",
|
||||||
|
"device": "default"
|
||||||
|
},
|
||||||
|
"class_type": "DualCLIPLoader",
|
||||||
|
"_meta": {
|
||||||
|
"title": "DualCLIPLoader"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"27": {
|
||||||
|
"inputs": {
|
||||||
|
"vae_name": "FLUX1/ae.safetensors"
|
||||||
|
},
|
||||||
|
"class_type": "VAELoader",
|
||||||
|
"_meta": {
|
||||||
|
"title": "Load VAE"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"32": {
|
||||||
|
"inputs": {
|
||||||
|
"upscale_model": [
|
||||||
|
"33",
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"image": [
|
||||||
|
"8",
|
||||||
|
0
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"class_type": "ImageUpscaleWithModel",
|
||||||
|
"_meta": {
|
||||||
|
"title": "Upscale Image (using Model)"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"33": {
|
||||||
|
"inputs": {
|
||||||
|
"model_name": "4x-UltraSharp.pth"
|
||||||
|
},
|
||||||
|
"class_type": "UpscaleModelLoader",
|
||||||
|
"_meta": {
|
||||||
|
"title": "Load Upscale Model"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"34": {
|
||||||
|
"inputs": {
|
||||||
|
"upscale_method": "lanczos",
|
||||||
|
"scale_by": 0.5,
|
||||||
|
"image": [
|
||||||
|
"32",
|
||||||
|
0
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"class_type": "ImageScaleBy",
|
||||||
|
"_meta": {
|
||||||
|
"title": "Half size"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"35": {
|
||||||
|
"inputs": {
|
||||||
|
"unet_name": "flux1-dev-Q4_0.gguf"
|
||||||
|
},
|
||||||
|
"class_type": "UnetLoaderGGUF",
|
||||||
|
"_meta": {
|
||||||
|
"title": "Unet Loader (GGUF)"
|
||||||
|
}
|
||||||
|
},
|
||||||
"40": {
|
"40": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"int": 20
|
"int": 20
|
||||||
@ -57,7 +126,10 @@
|
|||||||
"50",
|
"50",
|
||||||
1
|
1
|
||||||
],
|
],
|
||||||
"scheduler_name": "normal",
|
"scheduler": [
|
||||||
|
"49",
|
||||||
|
1
|
||||||
|
],
|
||||||
"positive": [
|
"positive": [
|
||||||
"44",
|
"44",
|
||||||
0
|
0
|
||||||
@ -100,7 +172,7 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"images": [
|
"images": [
|
||||||
"8",
|
"34",
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -111,7 +183,7 @@
|
|||||||
},
|
},
|
||||||
"44": {
|
"44": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"text": "Yautja Predator wielding flamethrower in smoky, cyberpunk alleyway darkness",
|
"text": "",
|
||||||
"speak_and_recognation": {
|
"speak_and_recognation": {
|
||||||
"__value__": [
|
"__value__": [
|
||||||
false,
|
false,
|
||||||
@ -152,18 +224,18 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"clip": [
|
"clip": [
|
||||||
"72",
|
"68",
|
||||||
0
|
1
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"class_type": "CLIPTextEncode",
|
"class_type": "CLIPTextEncode",
|
||||||
"_meta": {
|
"_meta": {
|
||||||
"title": "Prompt Encoder"
|
"title": "CLIP Text Encode (Prompt)"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"48": {
|
"48": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"seed": 47371998700984,
|
"seed": 903006749445372,
|
||||||
"increment": 1
|
"increment": 1
|
||||||
},
|
},
|
||||||
"class_type": "Seed Generator (Image Saver)",
|
"class_type": "Seed Generator (Image Saver)",
|
||||||
@ -177,7 +249,7 @@
|
|||||||
},
|
},
|
||||||
"class_type": "Scheduler Selector (Comfy) (Image Saver)",
|
"class_type": "Scheduler Selector (Comfy) (Image Saver)",
|
||||||
"_meta": {
|
"_meta": {
|
||||||
"title": "Scheduler"
|
"title": "Scheduler Selector"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"50": {
|
"50": {
|
||||||
@ -186,27 +258,66 @@
|
|||||||
},
|
},
|
||||||
"class_type": "Sampler Selector (Image Saver)",
|
"class_type": "Sampler Selector (Image Saver)",
|
||||||
"_meta": {
|
"_meta": {
|
||||||
"title": "Sampler"
|
"title": "Sampler Selector (Image Saver)"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"51": {
|
||||||
|
"inputs": {
|
||||||
|
"images": [
|
||||||
|
"8",
|
||||||
|
0
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"class_type": "PreviewImage",
|
||||||
|
"_meta": {
|
||||||
|
"title": "Preview Image"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"52": {
|
"52": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"float": 3.500000000000001
|
"float": 3.5
|
||||||
},
|
},
|
||||||
"class_type": "Float Literal (Image Saver)",
|
"class_type": "Float Literal (Image Saver)",
|
||||||
"_meta": {
|
"_meta": {
|
||||||
"title": "CFG Scale"
|
"title": "CFG"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"53": {
|
"53": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"float": 1.0000000000000002
|
"float": 1
|
||||||
},
|
},
|
||||||
"class_type": "Float Literal (Image Saver)",
|
"class_type": "Float Literal (Image Saver)",
|
||||||
"_meta": {
|
"_meta": {
|
||||||
"title": "Denoise"
|
"title": "Denoise"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"60": {
|
||||||
|
"inputs": {
|
||||||
|
"clip_l": "",
|
||||||
|
"t5xxl": [
|
||||||
|
"44",
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"guidance": [
|
||||||
|
"52",
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"speak_and_recognation": {
|
||||||
|
"__value__": [
|
||||||
|
false,
|
||||||
|
true
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"clip": [
|
||||||
|
"68",
|
||||||
|
1
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"class_type": "CLIPTextEncodeFlux",
|
||||||
|
"_meta": {
|
||||||
|
"title": "CLIPTextEncodeFlux"
|
||||||
|
}
|
||||||
|
},
|
||||||
"62": {
|
"62": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"noise": [
|
"noise": [
|
||||||
@ -232,7 +343,7 @@
|
|||||||
},
|
},
|
||||||
"class_type": "SamplerCustomAdvanced",
|
"class_type": "SamplerCustomAdvanced",
|
||||||
"_meta": {
|
"_meta": {
|
||||||
"title": "Custom Sampler"
|
"title": "SamplerCustomAdvanced"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"63": {
|
"63": {
|
||||||
@ -244,7 +355,7 @@
|
|||||||
},
|
},
|
||||||
"class_type": "KSamplerSelect",
|
"class_type": "KSamplerSelect",
|
||||||
"_meta": {
|
"_meta": {
|
||||||
"title": "KSampler Select"
|
"title": "KSamplerSelect"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"64": {
|
"64": {
|
||||||
@ -262,13 +373,13 @@
|
|||||||
0
|
0
|
||||||
],
|
],
|
||||||
"model": [
|
"model": [
|
||||||
"35",
|
"68",
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"class_type": "BasicScheduler",
|
"class_type": "BasicScheduler",
|
||||||
"_meta": {
|
"_meta": {
|
||||||
"title": "Sigma Generator"
|
"title": "BasicScheduler"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"65": {
|
"65": {
|
||||||
@ -280,13 +391,13 @@
|
|||||||
},
|
},
|
||||||
"class_type": "RandomNoise",
|
"class_type": "RandomNoise",
|
||||||
"_meta": {
|
"_meta": {
|
||||||
"title": "Noise Generator"
|
"title": "RandomNoise"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"67": {
|
"67": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"model": [
|
"model": [
|
||||||
"35",
|
"68",
|
||||||
0
|
0
|
||||||
],
|
],
|
||||||
"conditioning": [
|
"conditioning": [
|
||||||
@ -296,48 +407,31 @@
|
|||||||
},
|
},
|
||||||
"class_type": "BasicGuider",
|
"class_type": "BasicGuider",
|
||||||
"_meta": {
|
"_meta": {
|
||||||
"title": "Prompt Guider"
|
"title": "BasicGuider"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"72": {
|
"68": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"clip_name1": "t5-v1_1-xxl-encoder-Q4_K_M.gguf",
|
"lora_01": "None",
|
||||||
"clip_name2": "clip_l.safetensors",
|
"strength_01": 1,
|
||||||
"type": "flux",
|
"lora_02": "None",
|
||||||
"device": "cuda:0",
|
"strength_02": 1,
|
||||||
"virtual_vram_gb": 0,
|
"lora_03": "None",
|
||||||
"use_other_vram": false,
|
"strength_03": 1,
|
||||||
"expert_mode_allocations": ""
|
"lora_04": "None",
|
||||||
|
"strength_04": 1,
|
||||||
|
"model": [
|
||||||
|
"35",
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"clip": [
|
||||||
|
"22",
|
||||||
|
0
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"class_type": "DualCLIPLoaderGGUFDisTorchMultiGPU",
|
"class_type": "Lora Loader Stack (rgthree)",
|
||||||
"_meta": {
|
"_meta": {
|
||||||
"title": "DualCLIPLoaderGGUFDisTorchMultiGPU"
|
"title": "Lora Loader Stack (rgthree)"
|
||||||
}
|
|
||||||
},
|
|
||||||
"73": {
|
|
||||||
"inputs": {
|
|
||||||
"vae_name": "FLUX1/ae.safetensors",
|
|
||||||
"device": "cuda:0"
|
|
||||||
},
|
|
||||||
"class_type": "VAELoaderMultiGPU",
|
|
||||||
"_meta": {
|
|
||||||
"title": "VAELoaderMultiGPU"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"35": {
|
|
||||||
"inputs": {
|
|
||||||
"unet_name": "flux1-dev-Q4_0.gguf",
|
|
||||||
"dequant_dtype": "default",
|
|
||||||
"patch_dtype": "default",
|
|
||||||
"patch_on_device": false,
|
|
||||||
"device": "cuda:1",
|
|
||||||
"virtual_vram_gb": 0,
|
|
||||||
"use_other_vram": false,
|
|
||||||
"expert_mode_allocations": ""
|
|
||||||
},
|
|
||||||
"class_type": "UnetLoaderGGUFAdvancedDisTorchMultiGPU",
|
|
||||||
"_meta": {
|
|
||||||
"title": "UnetLoaderGGUFAdvancedDisTorchMultiGPU"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -1,433 +0,0 @@
|
|||||||
{
|
|
||||||
"8": {
|
|
||||||
"inputs": {
|
|
||||||
"samples": [
|
|
||||||
"62",
|
|
||||||
1
|
|
||||||
],
|
|
||||||
"vae": [
|
|
||||||
"27",
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"class_type": "VAEDecode",
|
|
||||||
"_meta": {
|
|
||||||
"title": "VAE Decode"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"22": {
|
|
||||||
"inputs": {
|
|
||||||
"clip_name1": "t5/t5xxl_fp8_e4m3fn.safetensors",
|
|
||||||
"clip_name2": "clip_l.safetensors",
|
|
||||||
"type": "flux",
|
|
||||||
"device": "default"
|
|
||||||
},
|
|
||||||
"class_type": "DualCLIPLoader",
|
|
||||||
"_meta": {
|
|
||||||
"title": "DualCLIPLoader"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"27": {
|
|
||||||
"inputs": {
|
|
||||||
"vae_name": "FLUX1/ae.safetensors"
|
|
||||||
},
|
|
||||||
"class_type": "VAELoader",
|
|
||||||
"_meta": {
|
|
||||||
"title": "Load VAE"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"32": {
|
|
||||||
"inputs": {
|
|
||||||
"upscale_model": [
|
|
||||||
"33",
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"image": [
|
|
||||||
"8",
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"class_type": "ImageUpscaleWithModel",
|
|
||||||
"_meta": {
|
|
||||||
"title": "Upscale Image (using Model)"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"33": {
|
|
||||||
"inputs": {
|
|
||||||
"model_name": "4x-UltraSharp.pth"
|
|
||||||
},
|
|
||||||
"class_type": "UpscaleModelLoader",
|
|
||||||
"_meta": {
|
|
||||||
"title": "Load Upscale Model"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"34": {
|
|
||||||
"inputs": {
|
|
||||||
"upscale_method": "lanczos",
|
|
||||||
"scale_by": 0.5,
|
|
||||||
"image": [
|
|
||||||
"32",
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"class_type": "ImageScaleBy",
|
|
||||||
"_meta": {
|
|
||||||
"title": "Half size"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"35": {
|
|
||||||
"inputs": {
|
|
||||||
"unet_name": "flux1-dev-Q4_0.gguf"
|
|
||||||
},
|
|
||||||
"class_type": "UnetLoaderGGUF",
|
|
||||||
"_meta": {
|
|
||||||
"title": "Unet Loader (GGUF)"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"40": {
|
|
||||||
"inputs": {
|
|
||||||
"int": 20
|
|
||||||
},
|
|
||||||
"class_type": "Int Literal (Image Saver)",
|
|
||||||
"_meta": {
|
|
||||||
"title": "Generation Steps"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"41": {
|
|
||||||
"inputs": {
|
|
||||||
"width": 720,
|
|
||||||
"height": 1080,
|
|
||||||
"aspect_ratio": "custom",
|
|
||||||
"swap_dimensions": "Off",
|
|
||||||
"upscale_factor": 2,
|
|
||||||
"prescale_factor": 1,
|
|
||||||
"batch_size": 1
|
|
||||||
},
|
|
||||||
"class_type": "CR Aspect Ratio",
|
|
||||||
"_meta": {
|
|
||||||
"title": "CR Aspect Ratio"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"42": {
|
|
||||||
"inputs": {
|
|
||||||
"filename": "THISFILE",
|
|
||||||
"path": "",
|
|
||||||
"extension": "png",
|
|
||||||
"steps": [
|
|
||||||
"40",
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"cfg": [
|
|
||||||
"52",
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"modelname": "flux1-dev-Q4_0.gguf",
|
|
||||||
"sampler_name": [
|
|
||||||
"50",
|
|
||||||
1
|
|
||||||
],
|
|
||||||
"positive": [
|
|
||||||
"44",
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"negative": [
|
|
||||||
"45",
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"seed_value": [
|
|
||||||
"48",
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"width": [
|
|
||||||
"41",
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"height": [
|
|
||||||
"41",
|
|
||||||
1
|
|
||||||
],
|
|
||||||
"lossless_webp": true,
|
|
||||||
"quality_jpeg_or_webp": 100,
|
|
||||||
"optimize_png": false,
|
|
||||||
"counter": 0,
|
|
||||||
"denoise": [
|
|
||||||
"53",
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"clip_skip": 0,
|
|
||||||
"time_format": "%Y-%m-%d-%H%M%S",
|
|
||||||
"save_workflow_as_json": true,
|
|
||||||
"embed_workflow": true,
|
|
||||||
"additional_hashes": "",
|
|
||||||
"download_civitai_data": true,
|
|
||||||
"easy_remix": true,
|
|
||||||
"speak_and_recognation": {
|
|
||||||
"__value__": [
|
|
||||||
false,
|
|
||||||
true
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"images": [
|
|
||||||
"34",
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"class_type": "Image Saver",
|
|
||||||
"_meta": {
|
|
||||||
"title": "CivitAI Image Saver"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"44": {
|
|
||||||
"inputs": {
|
|
||||||
"text": "",
|
|
||||||
"speak_and_recognation": {
|
|
||||||
"__value__": [
|
|
||||||
false,
|
|
||||||
true
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"class_type": "ttN text",
|
|
||||||
"_meta": {
|
|
||||||
"title": "Positive Prompt T5"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"45": {
|
|
||||||
"inputs": {
|
|
||||||
"text": "text, watermark, deformed Avoid flat colors, poor lighting, and artificial elements. No unrealistic elements, low resolution, or flat colors. Avoid generic objects, poor lighting, and inconsistent styles, blurry, low-quality, distorted faces, overexposed lighting, extra limbs, bad anatomy, low contrast",
|
|
||||||
"speak_and_recognation": {
|
|
||||||
"__value__": [
|
|
||||||
false,
|
|
||||||
true
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"class_type": "ttN text",
|
|
||||||
"_meta": {
|
|
||||||
"title": "Negative Prompt"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"47": {
|
|
||||||
"inputs": {
|
|
||||||
"text": [
|
|
||||||
"44",
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"speak_and_recognation": {
|
|
||||||
"__value__": [
|
|
||||||
false,
|
|
||||||
true
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"clip": [
|
|
||||||
"68",
|
|
||||||
1
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"class_type": "CLIPTextEncode",
|
|
||||||
"_meta": {
|
|
||||||
"title": "CLIP Text Encode (Prompt)"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"48": {
|
|
||||||
"inputs": {
|
|
||||||
"seed": 903006749445372,
|
|
||||||
"increment": 1
|
|
||||||
},
|
|
||||||
"class_type": "Seed Generator (Image Saver)",
|
|
||||||
"_meta": {
|
|
||||||
"title": "Seed"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"49": {
|
|
||||||
"inputs": {
|
|
||||||
"scheduler": "beta"
|
|
||||||
},
|
|
||||||
"class_type": "Scheduler Selector (Comfy) (Image Saver)",
|
|
||||||
"_meta": {
|
|
||||||
"title": "Scheduler Selector"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"50": {
|
|
||||||
"inputs": {
|
|
||||||
"sampler_name": "euler"
|
|
||||||
},
|
|
||||||
"class_type": "Sampler Selector (Image Saver)",
|
|
||||||
"_meta": {
|
|
||||||
"title": "Sampler Selector (Image Saver)"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"51": {
|
|
||||||
"inputs": {
|
|
||||||
"images": [
|
|
||||||
"8",
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"class_type": "PreviewImage",
|
|
||||||
"_meta": {
|
|
||||||
"title": "Preview Image"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"52": {
|
|
||||||
"inputs": {
|
|
||||||
"float": 3.5
|
|
||||||
},
|
|
||||||
"class_type": "Float Literal (Image Saver)",
|
|
||||||
"_meta": {
|
|
||||||
"title": "CFG"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"53": {
|
|
||||||
"inputs": {
|
|
||||||
"float": 1
|
|
||||||
},
|
|
||||||
"class_type": "Float Literal (Image Saver)",
|
|
||||||
"_meta": {
|
|
||||||
"title": "Denoise"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"60": {
|
|
||||||
"inputs": {
|
|
||||||
"clip_l": "",
|
|
||||||
"t5xxl": [
|
|
||||||
"44",
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"guidance": [
|
|
||||||
"52",
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"speak_and_recognation": {
|
|
||||||
"__value__": [
|
|
||||||
false,
|
|
||||||
true
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"clip": [
|
|
||||||
"68",
|
|
||||||
1
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"class_type": "CLIPTextEncodeFlux",
|
|
||||||
"_meta": {
|
|
||||||
"title": "CLIPTextEncodeFlux"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"62": {
|
|
||||||
"inputs": {
|
|
||||||
"noise": [
|
|
||||||
"65",
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"guider": [
|
|
||||||
"67",
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"sampler": [
|
|
||||||
"63",
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"sigmas": [
|
|
||||||
"64",
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"latent_image": [
|
|
||||||
"41",
|
|
||||||
5
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"class_type": "SamplerCustomAdvanced",
|
|
||||||
"_meta": {
|
|
||||||
"title": "SamplerCustomAdvanced"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"63": {
|
|
||||||
"inputs": {
|
|
||||||
"sampler_name": [
|
|
||||||
"50",
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"class_type": "KSamplerSelect",
|
|
||||||
"_meta": {
|
|
||||||
"title": "KSamplerSelect"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"64": {
|
|
||||||
"inputs": {
|
|
||||||
"scheduler": [
|
|
||||||
"49",
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"steps": [
|
|
||||||
"40",
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"denoise": [
|
|
||||||
"53",
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"model": [
|
|
||||||
"68",
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"class_type": "BasicScheduler",
|
|
||||||
"_meta": {
|
|
||||||
"title": "BasicScheduler"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"65": {
|
|
||||||
"inputs": {
|
|
||||||
"noise_seed": [
|
|
||||||
"48",
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"class_type": "RandomNoise",
|
|
||||||
"_meta": {
|
|
||||||
"title": "RandomNoise"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"67": {
|
|
||||||
"inputs": {
|
|
||||||
"model": [
|
|
||||||
"68",
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"conditioning": [
|
|
||||||
"47",
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"class_type": "BasicGuider",
|
|
||||||
"_meta": {
|
|
||||||
"title": "BasicGuider"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"68": {
|
|
||||||
"inputs": {
|
|
||||||
"lora_01": "None",
|
|
||||||
"strength_01": 1,
|
|
||||||
"lora_02": "None",
|
|
||||||
"strength_02": 1,
|
|
||||||
"lora_03": "None",
|
|
||||||
"strength_03": 1,
|
|
||||||
"lora_04": "None",
|
|
||||||
"strength_04": 1,
|
|
||||||
"model": [
|
|
||||||
"35",
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"clip": [
|
|
||||||
"22",
|
|
||||||
0
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"class_type": "Lora Loader Stack (rgthree)",
|
|
||||||
"_meta": {
|
|
||||||
"title": "Lora Loader Stack (rgthree)"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user