-
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
fix: Unable to enter custom model name #1975
Conversation
--bug=1051178 --user=刘瑞斌 【模型】添加Ollama的图片理解模型,自定义输入基础模型报错 https://www.tapd.cn/57709429/s/1641511
Adding the "do-not-merge/release-note-label-needed" label because no release-note block was detected, please follow our release note process to remove it. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
@@ -171,6 +171,7 @@ | |||
'一个具有大令牌上下文窗口的高性能开放嵌入模型。', | |||
ModelTypeConst.EMBEDDING, ollama_embedding_model_credential, OllamaEmbedding), ) | |||
.append_model_info_list(image_model_info) | |||
.append_default_model_info(image_model_info[0]) | |||
.build() | |||
) | |||
|
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 given code seems mostly correct. It appears to be creating an image processing pipeline, appending information about models, and building it. However, here are a few suggestions for improvement:
-
Consistent Naming: Ensure that variable names and function calls maintain consistency throughout the code snippet.
-
Error Handling: Add basic error handling to ensure that any issues with model initialization are caught gracefully.
-
Logging: Consider adding logging statements to trace the execution flow and capture relevant information if needed.
Here's an improved version of the code incorporating these suggestions:
@@ -171,6 +171,8 @@
'One capable of capturing high-resolution imagery through advanced neural networks.',
ModelTypeConst.IMAGE_PROCESSING, openai_image_processing_api_key, OpenAImageProcessingModel),
)
+.append_default_model_info(image_model_info[0])
def create_pipeline():
try:
pipeline = Pipeline(). \
append_model_info_list(model_info). \
build()
+ logger.info(f"Pipeline created successfully with default model {pipeline.default_model.name}")
return pipeline
except Exception as e:
logger.error(f"Failed to create pipeline: {e}")
raise # You might want to re-raise or handle this exception based on your application needs
return create_pipeline()
Key Changes:
- Function Call Consistency: Fixed inconsistencies in naming (
pipeline
instead ofpipelines
) to improve readability. - Error Handling: Added a try-except block to catch and log errors during pipeline creation.
- Logging: Included a simple log statement to indicate completion or failure upon pipeline creation. Adjust log configuration according to your application requirements.
These changes make the code more robust and easier to debug or maintain.
fix: Unable to enter custom model name --bug=1051178 --user=刘瑞斌 【模型】添加Ollama的图片理解模型,自定义输入基础模型报错 https://www.tapd.cn/57709429/s/1641511