Spaces:
Running
on
Zero
Running
on
Zero
start_process
Browse files- check_app.py +1 -1
check_app.py
CHANGED
@@ -123,7 +123,7 @@ def main():
|
|
123 |
output = gr.Textbox(label="Status")
|
124 |
img = gr.Image(label=model_name, height=300)
|
125 |
|
126 |
-
|
127 |
button.click(fn=start_process, inputs=[prompt_text], outputs=[output, img])
|
128 |
|
129 |
app.launch()
|
|
|
123 |
output = gr.Textbox(label="Status")
|
124 |
img = gr.Image(label=model_name, height=300)
|
125 |
|
126 |
+
start_process = create_pipeline_logic(model_name, config)
|
127 |
button.click(fn=start_process, inputs=[prompt_text], outputs=[output, img])
|
128 |
|
129 |
app.launch()
|