ltx-video / Main.py
Snapspark's picture
Create Main.py
e884e2f verified
Raw
History Blame Contribute Delete
283 Bytes
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()