Spaces:
Running
Running
Update main.py
Browse files
main.py
CHANGED
|
@@ -175,7 +175,7 @@ async def serve_indic_tts():
|
|
| 175 |
return HTMLResponse(content=content)
|
| 176 |
|
| 177 |
@app.get("/presentation", response_class=HTMLResponse)
|
| 178 |
-
async def
|
| 179 |
with open("static/presentation-agent.html", "r") as file:
|
| 180 |
content = file.read()
|
| 181 |
return HTMLResponse(content=content)
|
|
|
|
| 175 |
return HTMLResponse(content=content)
|
| 176 |
|
| 177 |
@app.get("/presentation", response_class=HTMLResponse)
|
| 178 |
+
async def presentation():
|
| 179 |
with open("static/presentation-agent.html", "r") as file:
|
| 180 |
content = file.read()
|
| 181 |
return HTMLResponse(content=content)
|