File size: 329 Bytes
8cc757b
32a276c
8cc757b
 
32a276c
8cc757b
32a276c
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import gradio as gr
from transformers import pipeline

def greet(name):
    return "Hello " + name + "!"

with gr.Blocks() as demo:
    name = gr.Textbox(label="Enter your question here")
    submit_btn = gr.Button("Submit")
    submit_btn.click(fn=greet, inputs=name)
    #output = gr.Textbox(label="Output Box")


demo.launch()