import os from dotenv import load_dotenv from subprocess import Popen load_dotenv() command = ["mercury", "run", f"0.0.0.0:{os.environ.get('PORT', 7860)}"] worker = Popen(command) worker.wait() #import gradio as gr #def greet(name): # return "Hello " + name + "!!" #iface = gr.Interface(fn=greet, inputs="text", outputs="text") #iface.launch() #https://mercury-docs.readthedocs.io/en/latest/deploy/hugging-face-spaces/ #https://huggingface.co/spaces/pplonski/deploy-mercury #https://discuss.huggingface.co/t/deploy-interactive-jupyter-notebook-on-spaces-with-mercury/17000 #https://huggingface.co/docs/transformers/notebooks