Update app.py
Browse files
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
|
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")
|