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