Spaces:
Build error
Build error
File size: 210 Bytes
cb206a1 |
1 2 3 4 5 6 7 8 9 10 |
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);
|