Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -103,7 +103,4 @@ async def websocket_endpoint(websocket: WebSocket, endpoint: str):
|
|
103 |
# Existing routes remain the same as in the previous implementation
|
104 |
@app.get("/", response_class=HTMLResponse)
|
105 |
async def home(request: Request):
|
106 |
-
return
|
107 |
-
"request": request,
|
108 |
-
"title": "Mathematical Insight Tutor"
|
109 |
-
})
|
|
|
103 |
# Existing routes remain the same as in the previous implementation
|
104 |
@app.get("/", response_class=HTMLResponse)
|
105 |
async def home(request: Request):
|
106 |
+
return HTMLResponse(open("static/index.html").read())
|
|
|
|
|
|