FinalProject / app.py
HakanKilic01's picture
4th commit
ebb322e
raw
history blame
227 Bytes
import gradio as gr
def greet(prompt):
return "Hello " + prompt + "!!"
iface = gr.Interface(
fn=greet,
inputs=gr.Textbox(lines=4, placeholder="Prompt here..."),
outputs=gr.Textbox(lines=4),
)
iface.launch()