yasserrmd commited on
Commit
4cfe4c5
·
verified ·
1 Parent(s): 69a896a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -4
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 templates.TemplateResponse("index.html", {
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())