Skip to content

Commit 5d3d587

Browse files
authored
Add files via upload
1 parent 8a8755b commit 5d3d587

5 files changed

+7
-6
lines changed

IFDisplayTextWildcardNode.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def __init__(self):
2121

2222
# Initialize paths
2323
#self.base_path = folder_paths.base_path
24-
self.presets_dir = os.path.join(folder_paths.base_path, "custom_nodes", "ComfyUI-IF_AI_LLM", "IF_AI", "presets")
24+
self.presets_dir = os.path.join(folder_paths.base_path, "custom_nodes", "ComfyUI-IF_LLM", "IF_AI", "presets")
2525
self.wildcards_dir = os.path.join(self.presets_dir, "wildcards")
2626

2727
# Load wildcards

IFSaveTextNode.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def process_text(self, question_input, negative_input, response_input, save_file
4141
return (question_input, response_input, negative_input, turn)
4242

4343
def save_text_to_file(self, turn_data, file_format, save_mode):
44-
save_text_dir = os.path.join(folder_paths.base_path, "custom_nodes", "ComfyUI-IF_AI_LLM", "IF_AI", "saved_outputs")
44+
save_text_dir = os.path.join(folder_paths.base_path, "custom_nodes", "ComfyUI-IF_LLM", "IF_AI", "saved_outputs")
4545
os.makedirs(save_text_dir, exist_ok=True)
4646
file_path = os.path.join(save_text_dir, f"output.{file_format}")
4747

agent_tool.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ def __init__(self, name, description, system_prompt, default_engine, default_mod
2222
self.comfy_dir = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
2323

2424
def load(self):
25-
# Construct the path to the ComfyUI-IF_AI_LLM directory
26-
if_ai_tools_dir = os.path.join(folder_paths.base_path, "custom_nodes", "ComfyUI-IF_AI_LLM")
25+
# Construct the path to the ComfyUI-IF_LLM directory
26+
if_ai_tools_dir = os.path.join(folder_paths.base_path, "custom_nodes", "ComfyUI-IF_LLM")
2727

28-
# Add the ComfyUI-IF_AI_LLM directory to sys.path
28+
# Add the ComfyUI-IF_LLM directory to sys.path
2929
if if_ai_tools_dir not in sys.path:
3030
sys.path.insert(0, if_ai_tools_dir)
3131

utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1133,7 +1133,7 @@ def convert_to_bool(value):
11331133
profiles_path = os.path.join(
11341134
folder_paths.base_path,
11351135
"custom_nodes",
1136-
"ComfyUI-IF_AI_LLM",
1136+
"ComfyUI-IF_LLM",
11371137
"IF_AI",
11381138
"presets",
11391139
"profiles.json"

workflows/IF_LLM_HoldMyBeer_artstyle_replication.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)