Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,12 +1,14 @@
|
|
| 1 |
import gradio as gr
|
| 2 |
|
| 3 |
def say_hello():
|
| 4 |
-
return "Hello World!"
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
|
|
|
|
|
|
| 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 |
"""
|