-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: support siliconCloud #2127
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
apps/setting/models_provider/impl/siliconCloud_model_provider/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# coding=utf-8 | ||
""" | ||
@project: maxkb | ||
@Author:虎 | ||
@file: __init__.py.py | ||
@date:2024/3/28 16:25 | ||
@desc: | ||
""" |
51 changes: 51 additions & 0 deletions
51
apps/setting/models_provider/impl/siliconCloud_model_provider/credential/embedding.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# coding=utf-8 | ||
""" | ||
@project: MaxKB | ||
@Author:虎 | ||
@file: embedding.py | ||
@date:2024/7/12 16:45 | ||
@desc: | ||
""" | ||
from typing import Dict | ||
|
||
from django.utils.translation import gettext as _ | ||
|
||
from common import forms | ||
from common.exception.app_exception import AppApiException | ||
from common.forms import BaseForm | ||
from setting.models_provider.base_model_provider import BaseModelCredential, ValidCode | ||
|
||
|
||
class SiliconCloudEmbeddingCredential(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: | ||
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', ''))} | ||
|
||
api_base = forms.TextInputField('API URL', required=True) | ||
api_key = forms.PasswordInputField('API Key', required=True) |
72 changes: 72 additions & 0 deletions
72
apps/setting/models_provider/impl/siliconCloud_model_provider/credential/image.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
# coding=utf-8 | ||
import base64 | ||
import os | ||
from typing import Dict | ||
|
||
from langchain_core.messages import HumanMessage | ||
|
||
from common import forms | ||
from common.exception.app_exception import AppApiException | ||
from common.forms import BaseForm, TooltipLabel | ||
from setting.models_provider.base_model_provider import BaseModelCredential, ValidCode | ||
from django.utils.translation import gettext_lazy as _, gettext | ||
|
||
|
||
class SiliconCloudImageModelParams(BaseForm): | ||
temperature = forms.SliderField(TooltipLabel(_('Temperature'), | ||
_('Higher values make the output more random, while lower values make it more focused and deterministic')), | ||
required=True, default_value=0.7, | ||
_min=0.1, | ||
_max=1.0, | ||
_step=0.01, | ||
precision=2) | ||
|
||
max_tokens = forms.SliderField( | ||
TooltipLabel(_('Output the maximum Tokens'), | ||
_('Specify the maximum number of tokens that the model can generate')), | ||
required=True, default_value=800, | ||
_min=1, | ||
_max=100000, | ||
_step=1, | ||
precision=0) | ||
|
||
|
||
class SiliconCloudImageModelCredential(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) | ||
res = model.stream([HumanMessage(content=[{"type": "text", "text": gettext('Hello')}])]) | ||
for chunk in res: | ||
print(chunk) | ||
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 SiliconCloudImageModelParams() |
77 changes: 77 additions & 0 deletions
77
apps/setting/models_provider/impl/siliconCloud_model_provider/credential/llm.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
# coding=utf-8 | ||
""" | ||
@project: MaxKB | ||
@Author:虎 | ||
@file: llm.py | ||
@date:2024/7/11 18:32 | ||
@desc: | ||
""" | ||
from typing import Dict | ||
|
||
from django.utils.translation import gettext_lazy as _, gettext | ||
from langchain_core.messages import HumanMessage | ||
|
||
from common import forms | ||
from common.exception.app_exception import AppApiException | ||
from common.forms import BaseForm, TooltipLabel | ||
from setting.models_provider.base_model_provider import BaseModelCredential, ValidCode | ||
|
||
|
||
class SiliconCloudLLMModelParams(BaseForm): | ||
temperature = forms.SliderField(TooltipLabel(_('Temperature'), | ||
_('Higher values make the output more random, while lower values make it more focused and deterministic')), | ||
required=True, default_value=0.7, | ||
_min=0.1, | ||
_max=1.0, | ||
_step=0.01, | ||
precision=2) | ||
|
||
max_tokens = forms.SliderField( | ||
TooltipLabel(_('Output the maximum Tokens'), | ||
_('Specify the maximum number of tokens that the model can generate')), | ||
required=True, default_value=800, | ||
_min=1, | ||
_max=100000, | ||
_step=1, | ||
precision=0) | ||
|
||
|
||
class SiliconCloudLLMModelCredential(BaseForm, BaseModelCredential): | ||
|
||
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.invoke([HumanMessage(content=gettext('Hello'))]) | ||
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', ''))} | ||
|
||
api_base = forms.TextInputField('API URL', required=True) | ||
api_key = forms.PasswordInputField('API Key', required=True) | ||
|
||
def get_model_params_setting_form(self, model_name): | ||
return SiliconCloudLLMModelParams() | ||
52 changes: 52 additions & 0 deletions
52
apps/setting/models_provider/impl/siliconCloud_model_provider/credential/reranker.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# coding=utf-8 | ||
""" | ||
@project: MaxKB | ||
@Author:虎 | ||
@file: reranker.py | ||
@date:2024/9/9 17:51 | ||
@desc: | ||
""" | ||
from typing import Dict | ||
|
||
from django.utils.translation import gettext as _ | ||
from langchain_core.documents import Document | ||
|
||
from common import forms | ||
from common.exception.app_exception import AppApiException | ||
from common.forms import BaseForm | ||
from setting.models_provider.base_model_provider import BaseModelCredential, ValidCode | ||
from setting.models_provider.impl.aliyun_bai_lian_model_provider.model.reranker import AliyunBaiLianReranker | ||
from setting.models_provider.impl.siliconCloud_model_provider.model.reranker import SiliconCloudReranker | ||
|
||
|
||
class SiliconCloudRerankerCredential(BaseForm, BaseModelCredential): | ||
|
||
def is_valid(self, model_type: str, model_name, model_credential: Dict[str, object], model_params, provider, | ||
raise_exception=False): | ||
if not model_type == 'RERANKER': | ||
raise AppApiException(ValidCode.valid_error.value, | ||
_('{model_type} Model type is not supported').format(model_type=model_type)) | ||
for key in ['dashscope_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: SiliconCloudReranker = provider.get_model(model_type, model_name, model_credential) | ||
model.compress_documents([Document(page_content=_('Hello'))], _('Hello')) | ||
except Exception as e: | ||
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, 'dashscope_api_key': super().encryption(model.get('dashscope_api_key', ''))} | ||
|
||
dashscope_api_key = forms.PasswordInputField('API Key', required=True) |
47 changes: 47 additions & 0 deletions
47
apps/setting/models_provider/impl/siliconCloud_model_provider/credential/stt.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# coding=utf-8 | ||
from typing import Dict | ||
|
||
from django.utils.translation import gettext as _ | ||
|
||
from common import forms | ||
from common.exception.app_exception import AppApiException | ||
from common.forms import BaseForm | ||
from setting.models_provider.base_model_provider import BaseModelCredential, ValidCode | ||
|
||
|
||
class SiliconCloudSTTModelCredential(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, | ||
_('{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.check_auth() | ||
except Exception as e: | ||
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', ''))} | ||
|
||
def get_model_params_setting_form(self, model_name): | ||
pass |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The provided Python code contains several potential issues and areas for improvement:
Imports: The imports from
langchain_core.messages
are deprecated and no longer used. Consider removing them.Class Names: Class names in Django models like
User
should follow specific naming conventions (UpperCamelCase
). In this case, consider renamingSiliconCloudLLMModelCredential
,SiliconCloudLLMModelParams
to something more descriptive.Function Logic:
is_valid()
method has an inconsistent usage of exceptions. It raisesAppApiException
only whenraise_exception=True
. This inconsistency might be confusing for users consuming this function.Docstrings: While well-written, docstrings could benefit from some additional information about each parameter and why they are needed.
Code Style: Maintain adherence to PEP 8 style guidelines, which includes proper indentation, line length limits, and consistent spacing between operators.
Security Concerns: Ensure that sensitive fields such as API keys are handled securely, even though password inputs are considered safe on many frontend frameworks.
Here's a revised version with some improvements:
Key Changes: