Kevin Hu
commited on
Commit
·
e51fa66
1
Parent(s):
d8ce288
fix no tts issue (#2101)
Browse files### What problem does this PR solve?
### Type of change
- [x] Bug Fix (non-breaking change which fixes an issue)
- api/apps/user_app.py +1 -1
api/apps/user_app.py
CHANGED
@@ -410,7 +410,7 @@ def tenant_info():
|
|
410 |
|
411 |
@manager.route("/set_tenant_info", methods=["POST"])
|
412 |
@login_required
|
413 |
-
@validate_request("tenant_id", "asr_id", "embd_id", "img2txt_id", "llm_id"
|
414 |
def set_tenant_info():
|
415 |
req = request.json
|
416 |
try:
|
|
|
410 |
|
411 |
@manager.route("/set_tenant_info", methods=["POST"])
|
412 |
@login_required
|
413 |
+
@validate_request("tenant_id", "asr_id", "embd_id", "img2txt_id", "llm_id")
|
414 |
def set_tenant_info():
|
415 |
req = request.json
|
416 |
try:
|