yasserrmd commited on
Commit
3ba759c
·
verified ·
1 Parent(s): 630fe1c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -30,7 +30,7 @@ async def serve_homepage():
30
  with open("static/index.html", "r") as f:
31
  return Response(content=f.read(), media_type="text/html")
32
  @app.get("/conv")
33
- async def serve_homepage():
34
  """Serve the chat interface HTML."""
35
  with open("static/conv.html", "r") as f:
36
  return Response(content=f.read(), media_type="text/html")
 
30
  with open("static/index.html", "r") as f:
31
  return Response(content=f.read(), media_type="text/html")
32
  @app.get("/conv")
33
+ async def serve_convpage():
34
  """Serve the chat interface HTML."""
35
  with open("static/conv.html", "r") as f:
36
  return Response(content=f.read(), media_type="text/html")