Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -133,7 +133,7 @@ def extract_json_from_llm_response(raw_response: str) -> dict:
|
|
133 |
def serve_frontend():
|
134 |
"""Serves the frontend HTML file."""
|
135 |
try:
|
136 |
-
return app.send_static_file("
|
137 |
except Exception:
|
138 |
return "<h3>frontend2.html not found in static/ — please add your frontend2.html there.</h3>", 404
|
139 |
|
|
|
133 |
def serve_frontend():
|
134 |
"""Serves the frontend HTML file."""
|
135 |
try:
|
136 |
+
return app.send_static_file("frontend.html")
|
137 |
except Exception:
|
138 |
return "<h3>frontend2.html not found in static/ — please add your frontend2.html there.</h3>", 404
|
139 |
|