Spaces:
Sleeping
Sleeping
Update main.py
Browse files
main.py
CHANGED
|
@@ -146,6 +146,13 @@ async def serve_iresearcher():
|
|
| 146 |
content = file.read()
|
| 147 |
return HTMLResponse(content=content)
|
| 148 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 149 |
|
| 150 |
@app.get("/file-convert", response_class=HTMLResponse)
|
| 151 |
async def serve_resume_optimizer():
|
|
|
|
| 146 |
content = file.read()
|
| 147 |
return HTMLResponse(content=content)
|
| 148 |
|
| 149 |
+
@app.get("/indic-tts", response_class=HTMLResponse)
|
| 150 |
+
async def serve_indic_tts():
|
| 151 |
+
with open("static/indic-text-to-speech.html", "r") as file:
|
| 152 |
+
content = file.read()
|
| 153 |
+
return HTMLResponse(content=content)
|
| 154 |
+
|
| 155 |
+
|
| 156 |
|
| 157 |
@app.get("/file-convert", response_class=HTMLResponse)
|
| 158 |
async def serve_resume_optimizer():
|