Spaces:
Running
Running
Update speech_api.py
Browse files- speech_api.py +1 -1
speech_api.py
CHANGED
@@ -12,7 +12,7 @@ router = APIRouter()
|
|
12 |
ULCA_USER_ID = os.getenv("ULCA_USER_ID")
|
13 |
ULCA_API_KEY = os.getenv("ULCA_API_KEY")
|
14 |
|
15 |
-
client = BhashiniClient(user_id=
|
16 |
|
17 |
class TTSRequest(BaseModel):
|
18 |
text: str
|
|
|
12 |
ULCA_USER_ID = os.getenv("ULCA_USER_ID")
|
13 |
ULCA_API_KEY = os.getenv("ULCA_API_KEY")
|
14 |
|
15 |
+
client = BhashiniClient(user_id=ULCA_USER_ID, api_key=ULCA_API_KEY)
|
16 |
|
17 |
class TTSRequest(BaseModel):
|
18 |
text: str
|