Spaces:
Build error
Build error
import gradio as gr | |
import time | |
def replace(text): | |
return text.replace('World', 'Databricks') | |
gr.Interface(fn=replace, | |
inputs='textbox', | |
outputs='textbox').launch(share=True); | |