yasserrmd commited on
Commit
d232ef2
·
verified ·
1 Parent(s): 9843549

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -103,7 +103,7 @@ 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 templates.TemplateResponse("/static/index.html", {
107
  "request": request,
108
  "title": "Mathematical Insight Tutor"
109
  })