Spaces:
Runtime error
Runtime error
File size: 360 Bytes
e8e247e 081b46f 814e7e2 a845f21 6f1af31 ec7540b 75ef19a 7b8870b 814e7e2 b934ee9 182a838 814e7e2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import gradio as gr
theme = gr.themes.Soft()
# Define a function that echoes the input text
def echo_text(input_text):
return input_text
iface = gr.Interface(
fn=echo_text,
inputs=gr.Textbox(text="Enter text here..."),
outputs=gr.Textbox(),
live=True,
title="LLM Evaluator with Linguistic Scrutiny",
theme=theme
)
iface.launch() |