This commit is contained in:
justumen
2025-03-30 08:10:46 +02:00
parent 9f8e82d2c3
commit 45987f4b71
3 changed files with 6 additions and 4 deletions

View File

@@ -462,7 +462,8 @@ Remove faster-whisper from requirements.txt for people using python 3.13. (Need
Fix preview image node for the new comfyui layout. Fix preview image node for the new comfyui layout.
Rewrite of FFMPEG nodes, COnfiguration and Video preview. Rewrite of FFMPEG nodes, COnfiguration and Video preview.
Many other bug fixes and improvements on many nodes, thx for the reports. Many other bug fixes and improvements on many nodes, thx for the reports.
- **0.78**: Fix Line selector Reset button javascript. (not showing on refresh) - **0.78**: Fix Line selector Reset button javascript. (not showing on refresh)
- **0.79**: Fix Ollama Talk
# 📝 Nodes descriptions # 📝 Nodes descriptions

View File

@@ -11,6 +11,9 @@ import sys
import os import os
import time import time
import glob import glob
import io
import ollama
from ollama import Client
class OllamaTalk: class OllamaTalk:
@classmethod @classmethod
@@ -45,8 +48,6 @@ class OllamaTalk:
current_instance = None current_instance = None
def __init__(self): def __init__(self):
import ollama
from ollama import Client
self.last_content_hash = None self.last_content_hash = None
self.waiting = False self.waiting = False
self.OLLAMA_CONFIG = None self.OLLAMA_CONFIG = None

View File

@@ -1,7 +1,7 @@
[project] [project]
name = "bjornulf_custom_nodes" name = "bjornulf_custom_nodes"
description = "162 ComfyUI nodes : Display, manipulate, and edit text, images, videos, loras, generate characters and more. Manage looping operations, generate randomized content, use logical conditions and work with external AI tools, like Ollama or Text To Speech, etc..." description = "162 ComfyUI nodes : Display, manipulate, and edit text, images, videos, loras, generate characters and more. Manage looping operations, generate randomized content, use logical conditions and work with external AI tools, like Ollama or Text To Speech, etc..."
version = "0.78" version = "0.79"
license = {file = "LICENSE"} license = {file = "LICENSE"}
[project.urls] [project.urls]