Spaces:
Running
Running
Upload folder using huggingface_hub
Browse files
main.py
CHANGED
@@ -123,6 +123,8 @@ with gr.Blocks() as demo:
|
|
123 |
# ComfyDeploy Gradio Interface
|
124 |
|
125 |
This is a Gradio interface for a ComfyDeploy workflow. You can interact with the deployed model using the inputs below.
|
|
|
|
|
126 |
|
127 |
To clone this workflow, visit: [ComfyDeploy Gradio Flux](https://www.comfydeploy.com/share/comfy-deploy-gradio-flux)
|
128 |
""")
|
@@ -160,7 +162,7 @@ with gr.Blocks() as demo:
|
|
160 |
res2 = await client.run.get_async(run_id=res.object.run_id)
|
161 |
print("checking ", res2.object.progress, res2.object.live_status)
|
162 |
progress_value = res2.object.progress if res2.object.progress is not None else 0
|
163 |
-
progress(progress_value, desc=f"{res2.object.live_status}")
|
164 |
|
165 |
if res2.object is not None and res2.object.status == "success":
|
166 |
# print(res2)
|
|
|
123 |
# ComfyDeploy Gradio Interface
|
124 |
|
125 |
This is a Gradio interface for a ComfyDeploy workflow. You can interact with the deployed model using the inputs below.
|
126 |
+
|
127 |
+
Model Using
|
128 |
|
129 |
To clone this workflow, visit: [ComfyDeploy Gradio Flux](https://www.comfydeploy.com/share/comfy-deploy-gradio-flux)
|
130 |
""")
|
|
|
162 |
res2 = await client.run.get_async(run_id=res.object.run_id)
|
163 |
print("checking ", res2.object.progress, res2.object.live_status)
|
164 |
progress_value = res2.object.progress if res2.object.progress is not None else 0
|
165 |
+
progress(progress_value, desc=f"{res2.object.live_status if res2.object.live_status is not None else 'Cold starting...'}")
|
166 |
|
167 |
if res2.object is not None and res2.object.status == "success":
|
168 |
# print(res2)
|