Add Mount
Browse files
app.py
CHANGED
|
@@ -808,5 +808,9 @@ with gr.Blocks(theme=theme, title="Kamlan: KML Analyzer") as demo:
|
|
| 808 |
</div>
|
| 809 |
""")
|
| 810 |
|
|
|
|
|
|
|
| 811 |
if __name__ == "__main__":
|
| 812 |
demo.launch(debug=True)
|
|
|
|
|
|
|
|
|
| 808 |
</div>
|
| 809 |
""")
|
| 810 |
|
| 811 |
+
|
| 812 |
+
|
| 813 |
if __name__ == "__main__":
|
| 814 |
demo.launch(debug=True)
|
| 815 |
+
# Mount the Gradio app onto the FastAPI app
|
| 816 |
+
app = gr.mount_gradio_app(app, demo, path="/")
|