LLM-Comparer / app.py
koki's picture
test
cd20a0b
raw
history blame
162 Bytes
import gradio as gr
import os
def greet(name):
return os.environ.get("prompts")
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()