Spaces:
Sleeping
Sleeping
Update main.py
Browse files
main.py
CHANGED
@@ -44,6 +44,10 @@ from auth import router as auth_router, get_current_user, users_collection
|
|
44 |
# Mount auth endpoints under /auth
|
45 |
app.include_router(auth_router, prefix="/auth")
|
46 |
|
|
|
|
|
|
|
|
|
47 |
# Global variables (initialized on startup)
|
48 |
llm = None
|
49 |
embeddings = None
|
|
|
44 |
# Mount auth endpoints under /auth
|
45 |
app.include_router(auth_router, prefix="/auth")
|
46 |
|
47 |
+
from transcribe import router as transcribe_router
|
48 |
+
app.include_router(transcribe_router, prefix="/audio")
|
49 |
+
|
50 |
+
|
51 |
# Global variables (initialized on startup)
|
52 |
llm = None
|
53 |
embeddings = None
|