Update tts.py
Browse files
tts.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
# app/routes/tts.py
|
2 |
|
3 |
from fastapi import APIRouter, Depends
|
4 |
-
from auth import
|
5 |
from tts import tts_synthesis # Import your TTS synthesis function
|
6 |
from main import get_current_user
|
7 |
|
|
|
1 |
# app/routes/tts.py
|
2 |
|
3 |
from fastapi import APIRouter, Depends
|
4 |
+
from auth import UserCreate # Import a model for the user response
|
5 |
from tts import tts_synthesis # Import your TTS synthesis function
|
6 |
from main import get_current_user
|
7 |
|