sidd-harth011 commited on
Commit
f25f10c
·
1 Parent(s): a7631d0
Files changed (1) hide show
  1. app.py +14 -0
app.py CHANGED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def say_hello(name):
4
+ return f"Hello {name}, the model is ready on Hugging Face Spaces!"
5
+
6
+ demo = gr.Interface(
7
+ fn=say_hello,
8
+ inputs="text",
9
+ outputs="text",
10
+ title="Test Space"
11
+ )
12
+
13
+ if __name__ == "__main__":
14
+ demo.launch()