This commit is contained in:
justumen
2024-11-22 14:07:25 +01:00
parent 09673b8f8d
commit 3d8d94597f
3 changed files with 4 additions and 3 deletions

View File

@@ -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

View File

@@ -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", {

View File

@@ -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]