Spaces:
Configuration error
Configuration error
import gradio as gr | |
from resources import register, tabularGradio | |
def Hello_World(name): | |
return f"Hello {name}, and welcome to Gradio Flow π€" | |
def add(x, y): | |
return x + y | |
if __name__ == "__main__": | |
tabularGradio([Hello_World()], ["Hello World"]) |