re-type's picture
Update app.py
f045dd1 verified
raw
history blame
302 Bytes
import gradio as gr
def test_function(text):
return f"You entered: {text}"
# Simple test interface
with gr.Blocks(title="Test App") as demo:
gr.Markdown("# Test Interface")
with gr.Row():
input_box = gr.Textbox(label="Input")
output_box = gr.Textbox(label="Output")