mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-27 20:42:52 +00:00
68 lines
3.0 KiB
Python
68 lines
3.0 KiB
Python
# 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
|
|
from common.utils.logger import maxkb_logger
|
|
|
|
class ZhiPuTTIModelParams(BaseForm):
|
|
size = forms.SingleSelect(
|
|
TooltipLabel(_('Image size'),
|
|
_('Image size, only cogview-3-plus supports this parameter. Optional range: [1024x1024,768x1344,864x1152,1344x768,1152x864,1440x720,720x1440], the default is 1024x1024.')),
|
|
required=True,
|
|
default_value='1024x1024',
|
|
option_list=[
|
|
{'value': '1024x1024', 'label': '1024x1024'},
|
|
{'value': '768x1344', 'label': '768x1344'},
|
|
{'value': '864x1152', 'label': '864x1152'},
|
|
{'value': '1344x768', 'label': '1344x768'},
|
|
{'value': '1152x864', 'label': '1152x864'},
|
|
{'value': '1440x720', 'label': '1440x720'},
|
|
{'value': '720x1440', 'label': '720x1440'},
|
|
],
|
|
text_field='label',
|
|
value_field='value')
|
|
|
|
|
|
class ZhiPuTextToImageModelCredential(BaseForm, BaseModelCredential):
|
|
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_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)
|
|
res = model.check_auth()
|
|
except Exception as e:
|
|
maxkb_logger.error(f'Exception: {e}', exc_info=True)
|
|
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 ZhiPuTTIModelParams()
|