Spaces:
Sleeping
Sleeping
| import gradio as gr | |
| def greet(text): | |
| return f"You typed: {text}" | |
| demo = gr.Interface( | |
| fn=greet, | |
| inputs=gr.Textbox(label="Input"), | |
| outputs=gr.Textbox(label="Output"), | |
| title="BRD Audit (Test)" | |
| ) | |
| if __name__ == "__main__": | |
| demo.launch() | |