Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -97,4 +97,6 @@ with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
|
| 97 |
# 🚀 Launch the App
|
| 98 |
# -------------------------
|
| 99 |
|
| 100 |
-
|
|
|
|
|
|
|
|
|
| 97 |
# 🚀 Launch the App
|
| 98 |
# -------------------------
|
| 99 |
|
| 100 |
+
# This runs the app if the file is being executed directly (not imported)
|
| 101 |
+
if __name__ == "__main__":
|
| 102 |
+
demo.launch() # Starts the Gradio interface so users can chat with the bot
|