Spaces:
Sleeping
Sleeping
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
import gradio as gr | |
# -->> Tunables <<--------------------- | |
# -->> Definitions <<------------------ | |
def greet(name): | |
return "Helloo" + name + "!" | |
# -->> API <<-------------------------- | |
iface = gr.Interface(fn=greet, inputs="text", outputs="text") | |
iface.launch() | |
# -->> Execute <<---------------------- | |
# -->> Export <<----------------------- | |