talktotext / app.py
ayan khan
Label change
b1298c2
raw
history blame contribute delete
No virus
215 Bytes
import gradio as gr
def greet(text):
return "Hello " + text + "!!"
textbox = gr.Textbox(lines=5,label="Enter text to chat with")
iface = gr.Interface(fn=greet, inputs=textbox, outputs="text")
iface.launch()