Spaces:
Sleeping
Sleeping
File size: 175 Bytes
8286c83 | 1 2 3 4 5 6 7 8 | 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()
|