Pachinee's picture
Update app.py
d7d67e9 verified
raw
history blame contribute delete
261 Bytes
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()