File size: 313 Bytes
d1ed758 e5b8fcb 0ef6edd e2342a8 e5b8fcb 45ab852 e5b8fcb d1ed758 4168b17 | 1 2 3 4 5 6 7 8 9 10 11 12 | import gradio as gr
def greet(name):
return f"Hello {name}! AI Brain is working!"
with gr.Blocks() as demo:
gr.Markdown("# 🧠 AI BRAIN IS ALIVE!")
name = gr.Textbox(label="Name", value="World")
output = gr.Textbox(label="Output")
gr.Button("Test").click(greet, name, output)
demo.launch() |