Spaces:
Running
on
Zero
Running
on
Zero
gokaygokay
commited on
Commit
·
0a6240b
1
Parent(s):
2dbd667
delete prints
Browse files- ui_components.py +0 -4
ui_components.py
CHANGED
@@ -141,12 +141,8 @@ def create_interface():
|
|
141 |
next_arg_index += 1
|
142 |
if category_params:
|
143 |
next_params[category] = category_params
|
144 |
-
|
145 |
-
print(next_params)
|
146 |
# Call generate_prompt with the correct arguments
|
147 |
result = prompt_generator.generate_prompt(dynamic_seed, *main_args, next_params=next_params)
|
148 |
-
|
149 |
-
print(result)
|
150 |
|
151 |
return [dynamic_seed] + list(result)
|
152 |
|
|
|
141 |
next_arg_index += 1
|
142 |
if category_params:
|
143 |
next_params[category] = category_params
|
|
|
|
|
144 |
# Call generate_prompt with the correct arguments
|
145 |
result = prompt_generator.generate_prompt(dynamic_seed, *main_args, next_params=next_params)
|
|
|
|
|
146 |
|
147 |
return [dynamic_seed] + list(result)
|
148 |
|