tiktok-ai / app.py
Deepmind1's picture
Create app.py
72e38ca verified
Raw
History Blame
193 Bytes
import gradio as gr
def test():
return "OK - Space working ✅"
demo = gr.Interface(
fn=test,
inputs=[],
outputs="text"
)
demo.launch(server_name="0.0.0.0", server_port=7860)