rahulnair23's picture
Application file
ab6548f
raw
history blame
177 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "! Space for LLM-rank-themselves."
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()