remove debug file

This commit is contained in:
yadonglu
2025-01-22 19:25:01 -08:00
parent ce199d52ab
commit 6e389fe851

View File

@@ -1,12 +0,0 @@
from fastapi import FastAPI
import gradio as gr
app = FastAPI()
def greet(name):
return f"Hello, {name}!"
gradio_interface = gr.Interface(fn=greet, inputs="text", outputs="text")
gradio_app = gr.routes.App.create_app(gradio_interface)
app.mount("/gradio", gradio_app)