qolina commited on
Commit
f2bb139
1 Parent(s): e63ceda

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -4
app.py CHANGED
@@ -1,10 +1,7 @@
1
  import gradio as gr
2
 
3
- title = "Explore the Scientist Assistance (SciAssist) Here !"
4
- description = "You can try here."
5
-
6
  def greet(name):
7
  return "Hello " + name + "!!"
8
 
9
- iface = gr.Interface(fn=greet, inputs="text", outputs="text")
10
  iface.launch()
 
1
  import gradio as gr
2
 
 
 
 
3
  def greet(name):
4
  return "Hello " + name + "!!"
5
 
6
+ iface = gr.Interface(fn=greet, inputs="text", outputs="text", title = "Explore the Scientist Assistance (SciAssist) Here !", description = "You can try here.")
7
  iface.launch()