Spaces:
Runtime error
Runtime error
File size: 403 Bytes
97bbfd7 6fe3e9d 4f563f0 97bbfd7 |
1 2 3 4 5 6 7 8 9 10 11 12 |
import gradio as gr
def greet(name):
return "Hello " + name + "!"
#demo = gr.Interface(fn=greet, inputs="text", outputs="text")
#demo = gr.load(spaces="PharmaAI/private_gradio_test", inputs="text", outputs="text")
demo = gr.load(name="PharmaAI/private_gradio_test", hf_token="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", src="spaces")
if __name__ == "__main__":
demo.launch(show_api=False) |