Update app.py
Browse files
app.py
CHANGED
@@ -29,7 +29,7 @@ async def serve_homepage():
|
|
29 |
"""Serve the chat interface 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:
|
|
|
29 |
"""Serve the chat interface 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:
|