mirror of
https://github.com/ParisNeo/lollms.git
synced 2025-01-21 03:55:01 +00:00
Merge branch 'main' of https://github.com/ParisNeo/lollms
This commit is contained in:
commit
0cbe144f05
@ -409,7 +409,7 @@ class LollmsApplication(LoLLMsCom):
|
|||||||
from lollms.services.comfyui.lollms_comfyui import LollmsComfyUI
|
from lollms.services.comfyui.lollms_comfyui import LollmsComfyUI
|
||||||
self.comfyui = LollmsComfyUI(self, comfyui_base_url=self.config.comfyui_base_url)
|
self.comfyui = LollmsComfyUI(self, comfyui_base_url=self.config.comfyui_base_url)
|
||||||
except:
|
except:
|
||||||
self.warning(f"Couldn't load SD")
|
self.warning(f"Couldn't load Comfyui")
|
||||||
|
|
||||||
if self.config.enable_motion_ctrl_service and self.motion_ctrl is None:
|
if self.config.enable_motion_ctrl_service and self.motion_ctrl is None:
|
||||||
try:
|
try:
|
||||||
|
@ -69,13 +69,17 @@ def build_image(prompt, negative_prompt, width, height, processor:APScript, clie
|
|||||||
elif processor.personality.config.active_tti_service=="comfyui":
|
elif processor.personality.config.active_tti_service=="comfyui":
|
||||||
if not processor.personality.app.tti:
|
if not processor.personality.app.tti:
|
||||||
from lollms.services.comfyui.lollms_comfyui import LollmsComfyUI
|
from lollms.services.comfyui.lollms_comfyui import LollmsComfyUI
|
||||||
processor.step_start("Loading dalle service")
|
processor.step_start("Loading comfyui service")
|
||||||
processor.personality.app.tti = LollmsComfyUI(processor.personality.app, comfyui_base_url=processor.personality)
|
processor.personality.app.tti = LollmsComfyUI(
|
||||||
|
processor.personality.app,
|
||||||
|
comfyui_base_url=processor.config.comfyui_base_url
|
||||||
|
)
|
||||||
processor.personality.app.dalle = processor.personality.app.tti
|
processor.personality.app.dalle = processor.personality.app.tti
|
||||||
processor.step_end("Loading dalle service")
|
processor.step_end("Loading comfyui service")
|
||||||
processor.step_start("Painting")
|
processor.step_start("Painting")
|
||||||
file = processor.personality.app.tti.paint(
|
file = processor.personality.app.tti.paint(
|
||||||
prompt,
|
prompt,
|
||||||
|
negative_prompt,
|
||||||
width = width,
|
width = width,
|
||||||
height = height,
|
height = height,
|
||||||
output_path=client.discussion.discussion_folder
|
output_path=client.discussion.discussion_folder
|
||||||
@ -87,7 +91,7 @@ def build_image(prompt, negative_prompt, width, height, processor:APScript, clie
|
|||||||
return f'\n![]({escaped_url})'
|
return f'\n![]({escaped_url})'
|
||||||
except Exception as ex:
|
except Exception as ex:
|
||||||
trace_exception(ex)
|
trace_exception(ex)
|
||||||
return "Couldn't generate image. Make sure Auto1111's stable diffusion service is installed"
|
return f"Couldn't generate image. Make sure {processor.personality.config.active_tti_service} service is installed"
|
||||||
|
|
||||||
|
|
||||||
def build_image_function(processor, client):
|
def build_image_function(processor, client):
|
||||||
|
@ -163,6 +163,7 @@ class LollmsComfyUI(LollmsTTI):
|
|||||||
share=False,
|
share=False,
|
||||||
wait_for_service=True
|
wait_for_service=True
|
||||||
):
|
):
|
||||||
|
super().__init__("comfyui", app)
|
||||||
if comfyui_base_url=="" or comfyui_base_url=="http://127.0.0.1:8188/":
|
if comfyui_base_url=="" or comfyui_base_url=="http://127.0.0.1:8188/":
|
||||||
comfyui_base_url = None
|
comfyui_base_url = None
|
||||||
# Get the current directory
|
# Get the current directory
|
||||||
@ -272,22 +273,28 @@ class LollmsComfyUI(LollmsTTI):
|
|||||||
restore_faces=True,
|
restore_faces=True,
|
||||||
output_path=None
|
output_path=None
|
||||||
):
|
):
|
||||||
|
if output_path is None:
|
||||||
|
output_path = self.output_dir
|
||||||
client_id = str(uuid.uuid4())
|
client_id = str(uuid.uuid4())
|
||||||
|
url = self.comfyui_base_url[7:-1]
|
||||||
|
|
||||||
def queue_prompt(prompt):
|
def queue_prompt(prompt):
|
||||||
p = {"prompt": prompt, "client_id": client_id}
|
p = {"prompt": prompt, "client_id": client_id}
|
||||||
data = json.dumps(p).encode('utf-8')
|
data = json.dumps(p).encode('utf-8')
|
||||||
req = request.Request("http://{}/prompt".format(self.comfyui_base_url), data=data)
|
full_url = "http://{}/prompt".format(url)
|
||||||
|
req = request.Request(full_url, data=data)
|
||||||
return json.loads(request.urlopen(req).read())
|
return json.loads(request.urlopen(req).read())
|
||||||
|
|
||||||
def get_image(filename, subfolder, folder_type):
|
def get_image(filename, subfolder):
|
||||||
data = {"filename": filename, "subfolder": subfolder, "type": folder_type}
|
data = {"filename": filename, "subfolder": subfolder}
|
||||||
url_values = parse.urlencode(data)
|
url_values = parse.urlencode(data)
|
||||||
with request.urlopen("http://{}/view?{}".format(self.comfyui_base_url, url_values)) as response:
|
full_url = "http://{}/view?{}".format(url, url_values)
|
||||||
|
with request.urlopen(full_url) as response:
|
||||||
return response.read()
|
return response.read()
|
||||||
|
|
||||||
def get_history(prompt_id):
|
def get_history(prompt_id):
|
||||||
with request.urlopen("http://{}/history/{}".format(self.comfyui_base_url, prompt_id)) as response:
|
url_values = "http://{}/history/{}".format(url, prompt_id)
|
||||||
|
with request.urlopen(url_values) as response:
|
||||||
return json.loads(response.read())
|
return json.loads(response.read())
|
||||||
|
|
||||||
def get_images(ws, prompt):
|
def get_images(ws, prompt):
|
||||||
@ -311,116 +318,110 @@ class LollmsComfyUI(LollmsTTI):
|
|||||||
if 'images' in node_output:
|
if 'images' in node_output:
|
||||||
images_output = []
|
images_output = []
|
||||||
for image in node_output['images']:
|
for image in node_output['images']:
|
||||||
image_data = get_image(image['filename'], image['subfolder'], image['type'])
|
if image["type"]=="output":
|
||||||
images_output.append(image_data)
|
image_data = get_image(image['filename'], image['subfolder'])
|
||||||
output_images[node_id] = images_output
|
images_output.append(image_data)
|
||||||
|
|
||||||
return output_images
|
|
||||||
|
|
||||||
|
return images_output
|
||||||
|
|
||||||
|
def save_images(images:dict, folder_path:str|Path):
|
||||||
|
# Create the folder if it doesn't exist
|
||||||
|
folder = Path(folder_path)
|
||||||
|
folder.mkdir(parents=True, exist_ok=True)
|
||||||
|
|
||||||
|
# Save each image to the folder
|
||||||
|
for i, img_data in enumerate(images):
|
||||||
|
img_path = folder / f'image_{i+1}.png'
|
||||||
|
with open(img_path, 'wb') as img_file:
|
||||||
|
img_file.write(img_data)
|
||||||
|
|
||||||
|
# Return the path to the first image
|
||||||
|
return str(folder / 'image_1.png')
|
||||||
prompt_text = """
|
prompt_text = """
|
||||||
{
|
{
|
||||||
"3": {
|
"1": {
|
||||||
"class_type": "KSampler",
|
"inputs": {
|
||||||
"inputs": {
|
"base_ckpt_name": "juggernaut.safetensors",
|
||||||
"cfg": 8,
|
"base_clip_skip": -2,
|
||||||
"denoise": 1,
|
"refiner_ckpt_name": "None",
|
||||||
"latent_image": [
|
"refiner_clip_skip": -2,
|
||||||
"5",
|
"positive_ascore": 6,
|
||||||
0
|
"negative_ascore": 2,
|
||||||
],
|
"vae_name": "Baked VAE",
|
||||||
"model": [
|
"positive": "smart robot icon, slick, flat design, high res, W in the center, black background",
|
||||||
"4",
|
"negative": "ugly, deformed, badly rendered, fuzzy",
|
||||||
0
|
"token_normalization": "none",
|
||||||
],
|
"weight_interpretation": "comfy",
|
||||||
"negative": [
|
"empty_latent_width": 1024,
|
||||||
"7",
|
"empty_latent_height": 1024,
|
||||||
0
|
"batch_size": 1
|
||||||
],
|
|
||||||
"positive": [
|
|
||||||
"6",
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"sampler_name": "euler",
|
|
||||||
"scheduler": "normal",
|
|
||||||
"seed": 8566257,
|
|
||||||
"steps": 20
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"4": {
|
"class_type": "Eff. Loader SDXL",
|
||||||
"class_type": "CheckpointLoaderSimple",
|
"_meta": {
|
||||||
"inputs": {
|
"title": "Eff. Loader SDXL"
|
||||||
"""+f"""
|
}
|
||||||
"ckpt_name": "{self.app.config.comfyui_model}"
|
},
|
||||||
"""+"""
|
"2": {
|
||||||
}
|
"inputs": {
|
||||||
|
"noise_seed": 74738751167752,
|
||||||
|
"steps": 20,
|
||||||
|
"cfg": 7,
|
||||||
|
"sampler_name": "euler",
|
||||||
|
"scheduler": "normal",
|
||||||
|
"start_at_step": 0,
|
||||||
|
"refine_at_step": -1,
|
||||||
|
"preview_method": "auto",
|
||||||
|
"vae_decode": "true",
|
||||||
|
"sdxl_tuple": [
|
||||||
|
"1",
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"latent_image": [
|
||||||
|
"1",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
"optional_vae": [
|
||||||
|
"1",
|
||||||
|
2
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"5": {
|
"class_type": "KSampler SDXL (Eff.)",
|
||||||
"class_type": "EmptyLatentImage",
|
"_meta": {
|
||||||
"inputs": {
|
"title": "KSampler SDXL (Eff.)"
|
||||||
"batch_size": 1,
|
}
|
||||||
"height": 512,
|
},
|
||||||
"width": 512
|
"3": {
|
||||||
}
|
"inputs": {
|
||||||
|
"filename_prefix": "ComfyUI",
|
||||||
|
"images": [
|
||||||
|
"2",
|
||||||
|
3
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"6": {
|
"class_type": "SaveImage",
|
||||||
"class_type": "CLIPTextEncode",
|
"_meta": {
|
||||||
"inputs": {
|
"title": "Save Image"
|
||||||
"clip": [
|
|
||||||
"4",
|
|
||||||
1
|
|
||||||
],"""+f"""
|
|
||||||
"text": "{positive_prompt}"
|
|
||||||
"""+"""
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"7": {
|
|
||||||
"class_type": "CLIPTextEncode",
|
|
||||||
"inputs": {
|
|
||||||
"clip": [
|
|
||||||
"4",
|
|
||||||
1
|
|
||||||
],"""+f"""
|
|
||||||
"text": "{negative_prompt}"
|
|
||||||
"""+"""
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"8": {
|
|
||||||
"class_type": "VAEDecode",
|
|
||||||
"inputs": {
|
|
||||||
"samples": [
|
|
||||||
"3",
|
|
||||||
0
|
|
||||||
],
|
|
||||||
"vae": [
|
|
||||||
"4",
|
|
||||||
2
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"9": {
|
|
||||||
"class_type": "SaveImage",
|
|
||||||
"inputs": {
|
|
||||||
"filename_prefix": "ComfyUI",
|
|
||||||
"images": [
|
|
||||||
"8",
|
|
||||||
0
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
||||||
prompt = json.loads(prompt_text)
|
prompt = json.loads(prompt_text)
|
||||||
#set the text prompt for our positive CLIPTextEncode
|
#set the text prompt for our positive CLIPTextEncode
|
||||||
prompt["6"]["inputs"]["text"] = "masterpiece best quality man"
|
prompt["1"]["inputs"]["positive"] = prompt_text
|
||||||
|
prompt["1"]["inputs"]["negative"] = negative_prompt
|
||||||
#set the seed for our KSampler node
|
prompt["1"]["inputs"]["empty_latent_width"] = width
|
||||||
prompt["3"]["inputs"]["seed"] = 5
|
prompt["1"]["inputs"]["empty_latent_height"] = height
|
||||||
|
|
||||||
|
prompt["1"]["inputs"]["base_ckpt_name"] = self.app.config.comfyui_model
|
||||||
|
|
||||||
ws = websocket.WebSocket()
|
ws = websocket.WebSocket()
|
||||||
ws.connect("ws://{}/ws?clientId={}".format(self.comfyui_base_url, client_id))
|
ws.connect("ws://{}/ws?clientId={}".format(url, client_id))
|
||||||
images = get_images(ws, prompt)
|
images = get_images(ws, prompt)
|
||||||
return None
|
|
||||||
|
return save_images(images, output_path), {"prompt":prompt,"negative_prompt":negative_prompt}
|
||||||
|
|
||||||
|
|
||||||
def paint_from_images(self, positive_prompt: str,
|
def paint_from_images(self, positive_prompt: str,
|
||||||
images: List[str],
|
images: List[str],
|
||||||
|
Loading…
Reference in New Issue
Block a user