KahnT commited on
Commit
a28fab7
·
1 Parent(s): 3231d03

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -6
app.py CHANGED
@@ -1,12 +1,14 @@
1
  import gradio as gr
2
 
3
  def say_hello():
4
- return "Hello World!"
5
- iface = gr.Interface(fn=say_hello,
6
- inputs=None,
7
- outputs="text",
8
- title="Zerogpt.cc",
9
- description="<a href='https://zerogpt.cc'>https://zerogpt.cc</a>")
 
 
10
  iface.launch()
11
 
12
  """
 
1
  import gradio as gr
2
 
3
  def say_hello():
4
+ return "Hello World!"
5
+
6
+ iface = gr.Interface(fn=say_hello,
7
+ inputs=None,
8
+ outputs="text",
9
+ title="GPTZero Alternative - AI Content Detector - ZeroGPT.CC",
10
+ description="Check our website for more details:<a href='https://zerogpt.cc'>https://zerogpt.cc</a>")
11
+
12
  iface.launch()
13
 
14
  """