Spaces:
Sleeping
Sleeping
File size: 494 Bytes
5a2deaa 45d0e7b 5a2deaa |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import gradio as gr
from worker import worker # import the worker function
import subprocess
import shlex
subprocess.run(shlex.split('pip install wheel/torchmcubes-0.1.0-cp310-cp310-linux_x86_64.whl'))
def greet(name):
return "Hello " + name + "!!"
def kickoff_worker():
worker() # call the worker function
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()
print("Launching worker...")
kickoff_worker() # kickoff the worker after launching the interface |