Spaces:
No application file
No application file
| 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") |