2025-04-17 10:01:33 +00:00
|
|
|
|
# coding=utf-8
|
|
|
|
|
|
"""
|
|
|
|
|
|
@project: MaxKB
|
|
|
|
|
|
@Author:虎
|
|
|
|
|
|
@file: embedding.py
|
|
|
|
|
|
@date:2024/7/12 16:45
|
|
|
|
|
|
@desc:
|
|
|
|
|
|
"""
|
|
|
|
|
|
import traceback
|
|
|
|
|
|
from typing import Dict
|
|
|
|
|
|
|
|
|
|
|
|
from django.utils.translation import gettext as _
|
|
|
|
|
|
|
|
|
|
|
|
from common import forms
|
|
|
|
|
|
from common.exception.app_exception import AppApiException
|
2025-10-27 04:46:49 +00:00
|
|
|
|
from common.forms import BaseForm, TooltipLabel
|
2025-04-17 10:01:33 +00:00
|
|
|
|
from models_provider.base_model_provider import BaseModelCredential, ValidCode
|
|
|
|
|
|
|
2025-10-27 04:46:49 +00:00
|
|
|
|
class OpenAIEmbeddingModelParams(BaseForm):
|
|
|
|
|
|
dimensions = forms.SingleSelect(
|
|
|
|
|
|
TooltipLabel(
|
|
|
|
|
|
_('Dimensions'),
|
|
|
|
|
|
_('')
|
|
|
|
|
|
),
|
|
|
|
|
|
required=True,
|
|
|
|
|
|
default_value=1024,
|
|
|
|
|
|
value_field='value',
|
|
|
|
|
|
text_field='label',
|
|
|
|
|
|
option_list=[
|
|
|
|
|
|
{'label': '1536', 'value': '1536'},
|
|
|
|
|
|
{'label': '1024', 'value': '1024'},
|
|
|
|
|
|
{'label': '768', 'value': '768'},
|
|
|
|
|
|
{'label': '512', 'value': '512'},
|
|
|
|
|
|
]
|
|
|
|
|
|
)
|
|
|
|
|
|
|
2025-04-17 10:01:33 +00:00
|
|
|
|
|
|
|
|
|
|
class OpenAIEmbeddingCredential(BaseForm, BaseModelCredential):
|
|
|
|
|
|
def is_valid(self, model_type: str, model_name, model_credential: Dict[str, object], model_params, provider,
|
|
|
|
|
|
raise_exception=True):
|
|
|
|
|
|
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,
|
|
|
|
|
|
_('{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, _('{key} is required').format(key=key))
|
|
|
|
|
|
else:
|
|
|
|
|
|
return False
|
|
|
|
|
|
try:
|
|
|
|
|
|
model = provider.get_model(model_type, model_name, model_credential)
|
|
|
|
|
|
model.embed_query(_('Hello'))
|
|
|
|
|
|
except Exception as e:
|
|
|
|
|
|
traceback.print_exc()
|
|
|
|
|
|
if isinstance(e, AppApiException):
|
|
|
|
|
|
raise e
|
|
|
|
|
|
if raise_exception:
|
|
|
|
|
|
raise AppApiException(ValidCode.valid_error.value,
|
|
|
|
|
|
_('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', ''))}
|
|
|
|
|
|
|
2025-10-27 04:46:49 +00:00
|
|
|
|
def get_model_params_setting_form(self, model_name):
|
|
|
|
|
|
return OpenAIEmbeddingModelParams()
|
|
|
|
|
|
|
2025-04-17 10:01:33 +00:00
|
|
|
|
api_base = forms.TextInputField('API URL', required=True)
|
|
|
|
|
|
api_key = forms.PasswordInputField('API Key', required=True)
|