| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- # coding=utf-8
- from typing import Dict
- from django.utils.translation import gettext_lazy as _, gettext
- from common import forms
- from common.exception.app_exception import AppApiException
- from common.forms import BaseForm, TooltipLabel
- from models_provider.base_model_provider import BaseModelCredential, ValidCode
- class XInferenceTTSModelGeneralParams(BaseForm):
- # ['中文女', '中文男', '日语男', '粤语女', '英文女', '英文男', '韩语女']
- voice = forms.SingleSelect(
- TooltipLabel(_('timbre'), ''),
- required=True, default_value='中文女',
- text_field='value',
- value_field='value',
- option_list=[
- {'text': _('Chinese female'), 'value': '中文女'},
- {'text': _('Chinese male'), 'value': '中文男'},
- {'text': _('Japanese male'), 'value': '日语男'},
- {'text': _('Cantonese female'), 'value': '粤语女'},
- {'text': _('English female'), 'value': '英文女'},
- {'text': _('English male'), 'value': '英文男'},
- {'text': _('Korean female'), 'value': '韩语女'},
- ])
- class XInferenceTTSModelCredential(BaseForm, BaseModelCredential):
- api_base = forms.TextInputField('API URL', required=True)
- api_key = forms.PasswordInputField('API Key', required=True)
- def is_valid(self, model_type: str, model_name, model_credential: Dict[str, object], model_params, provider,
- raise_exception=False):
- model_type_list = provider.get_model_type_list()
- if not any(list(filter(lambda mt: mt.get('value') == model_type, model_type_list))):
- raise AppApiException(ValidCode.valid_error.value,
- gettext('{model_type} Model type is not supported').format(model_type=model_type))
- for key in ['api_base', 'api_key']:
- if key not in model_credential:
- if raise_exception:
- raise AppApiException(ValidCode.valid_error.value, gettext('{key} is required').format(key=key))
- else:
- return False
- try:
- model = provider.get_model(model_type, model_name, model_credential, **model_params)
- model.check_auth()
- except Exception as e:
- if isinstance(e, AppApiException):
- raise e
- if raise_exception:
- raise AppApiException(ValidCode.valid_error.value,
- gettext(
- 'Verification failed, please check whether the parameters are correct: {error}').format(
- error=str(e)))
- else:
- return False
- return True
- def encryption_dict(self, model: Dict[str, object]):
- return {**model, 'api_key': super().encryption(model.get('api_key', ''))}
- def get_model_params_setting_form(self, model_name):
- return XInferenceTTSModelGeneralParams()
|