pvanand commited on
Commit
508be3f
·
verified ·
1 Parent(s): 474abd3

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +7 -0
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():