From 3d8d94597f4474031b9b3c581f188ab6903a1e67 Mon Sep 17 00:00:00 2001 From: justumen Date: Fri, 22 Nov 2024 14:07:25 +0100 Subject: [PATCH] ... --- README.md | 3 ++- ollama_system_job.py | 2 +- pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ece2bd5..88169b9 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# πŸ”— Comfyui : Bjornulf_custom_nodes v0.57 πŸ”— +# πŸ”— Comfyui : Bjornulf_custom_nodes v0.58 πŸ”— A list of 68 custom nodes for Comfyui : Display, manipulate, and edit text, images, videos, loras and more. You can manage looping operations, generate randomized content, trigger logical conditions, pause and manually control your workflows and even work with external AI tools, like Ollama or Text To Speech. @@ -283,6 +283,7 @@ cd /where/you/installed/ComfyUI && python main.py - **v0.54-55**: add opencv-python to requirements.txt - **0.56**: ❗Breaking changes : ollama node simplified, no ollama_ip.txt needed, waiting for collection ollama nodes to be ready. - **0.57**: ❗❗Huge changes, new Ollama node "Ollama Chat" with real functionalities. 5 Ollama nodes total. (Model selector + Job selector + Persona selector + Ollama vision + Ollama Talk) Ollama talk use context and can use context file. Add number of lines / current counter + next to sequential nodes. Add new node STT. (+ faster_whisper dep) better management of empty loras/checkpoints on selectors. (list preset) Add "default_for_language" for TTS node, taking the default voice for a language (ex: fr/default.wav) Otherwise take the first wav with the selected language. +- **0.58**: small fix in model selector default value. (Set to None by default) # πŸ“ Nodes descriptions diff --git a/ollama_system_job.py b/ollama_system_job.py index a0c8ccc..c127191 100644 --- a/ollama_system_job.py +++ b/ollama_system_job.py @@ -47,7 +47,7 @@ IMPORTANT : DO NOT Include information about the overall style or artistic techn def INPUT_TYPES(cls): return { "required": { - "selected_prompt": (list(cls.SYSTEM_JOBS.keys()), {"default": "Default Assistant"}) + "selected_prompt": (list(cls.SYSTEM_JOBS.keys()), {"default": "None"}) }, "optional": { "OLLAMA_PERSONA": ("OLLAMA_PERSONA", { diff --git a/pyproject.toml b/pyproject.toml index 9434e4e..77b5132 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "bjornulf_custom_nodes" description = "61 ComfyUI nodes : Display, manipulate, and edit text, images, videos, loras and more. Manage looping operations, generate randomized content, use logical conditions and work with external AI tools, like Ollama or Text To Speech." -version = "0.57" +version = "0.58" license = {file = "LICENSE"} [project.urls]