File size: 283 Bytes
e884e2f | 1 2 3 4 5 6 7 8 9 10 11 12 | import gradio as gr
def greet(name):
return f"Hello {name}! Brain is ALIVE!"
with gr.Blocks() as demo:
gr.Markdown("# 🧠 AI BRAIN")
name = gr.Textbox(label="Name")
output = gr.Textbox(label="Output")
gr.Button("Test").click(greet, name, output)
demo.launch() |