Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ibm
/
llm-rank-themselves
like
16
Running
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
rahulnair23
commited on
Jun 5, 2024
Commit
ab6548f
·
1 Parent(s):
8e4f9b2
Application file
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 greet(name):
4
+
return "Hello " + name + "! Space for LLM-rank-themselves."
5
+
6
+
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
7
+
demo.launch()