Rename test graph file

This commit is contained in:
enzymezoo-code 2023-09-01 16:48:57 -05:00
parent cd18e72bf3
commit faf4b3741e
2 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ class ComfyClient:
# #
# Initialize graphs # Initialize graphs
# #
default_graph_file = 'tests/inference/graphs/default_graph.json' default_graph_file = 'tests/inference/graphs/default_graph_sdxl1_0.json'
with open(default_graph_file, 'r') as file: with open(default_graph_file, 'r') as file:
default_graph = json.loads(file.read()) default_graph = json.loads(file.read())
DEFAULT_COMFY_GRAPH = ComfyGraph(graph=default_graph, sampler_nodes=['10','14']) DEFAULT_COMFY_GRAPH = ComfyGraph(graph=default_graph, sampler_nodes=['10','14'])