test-gradio / app.py
CryptoBear's picture
Add application file
8286c83
Raw
History Blame Contribute Delete
175 Bytes
import gradio as gr
def greet(input):
return "AIDC - AI Business - FE Team\n[input] " + input
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()