Shubham Krishna
Initial commit for creating HF spaces
3c43a5a
raw
history blame contribute delete
No virus
217 Bytes
import gradio as gr
def greet(name: str) -> str:
return "Hello " + name + "!"
if __name__ == "__main__":
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch(server_name="0.0.0.0")