Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
EuroEval
/
leaderboard
like
1
Running
App
Files
Files
Community
saattrupdan
commited on
Dec 24, 2024
Commit
b5a56eb
·
verified
·
1 Parent(s):
f7c0214
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+7
-0
app.py
ADDED
Viewed
@@ -0,0 +1,7 @@
1
+
import gradio as gr
2
+
3
+
def main():
4
+
return gr.HTML("<h1>Test</h1>")
5
+
6
+
demo = gr.Interface(fn=greet)
7
+
demo.launch()