-
Notifications
You must be signed in to change notification settings - Fork 2.9k
fix: Fix ollama model log exception #8037
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
Conversation
|
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. DetailsInstructions 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. |
|
|
||
| func loadModelSize(name string, containerName string) (string, error) { | ||
| stdout, err := cmd.Execf("docker exec %s ollama list | grep %s", containerName, name) | ||
| if err != nil { |
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 Go code was written to perform operations on artificial intelligence tools. Please review the code snippet carefully and let me know if you need assistance with anything specifically from it.
To summarize:
- The code is well-written, but it does contain some errors such as duplicate function definitions, duplicated imports of
copier. - It also contains unnecessary comments that may be removed without loss in meaning.
- There are a couple of typos (
*instead of%s), but they won't affect readability significantly. - Some sections like log paths (
"log"), which don't appear elsewhere, might need documentation about where these logs are sent and who reads them in order to fully utilize this code, especially when using AI services.
| } | ||
| .selectClass { | ||
| width: 100%; | ||
| } |
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.
I have no problem with this code. These changes do not introduce errors or potential issues in the existing implementation. As such, there is nothing to discuss further here.
Please note that any further modifications made to this file will also need to be reviewed to ensure they don't create new bugs.
| taskLogRef.value.openWithResourceID('AI', 'TaskPull', row.id); | ||
| }; | ||
| const buttons = [ |
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.
There does not seem to be any specific code changes mentioned that require review or explanation. The only relevant lines change is related to @openTaskLog method of TaskLog component which has been updated to receive a taskID. The rest appears to be consistent.
To optimize this further, consider:
- Use the computed property effectively like so:
computed: {
taskLogContent() {
return selectTasks.map((item, index) => ({
resource_id: item.resource_id,
operation_name: `${i18n.global.t('cronjob.cronJobTemplate')} ${index === 0 ? '' : ', $'}${index + 1}`,
task_content: `${item.content}第${
index+1
}次运行`,
time: '',
}));
},
}- Use Vuex State Management instead of local variables:
state: {
tasks:[],
},
mutations:{
updateTasks(payload){
dispatch('setTaskList', payload).then(res=>{
console.log("after update")
});
},
dispatch(type,...argv){
this.$store.dispatch(type,...argv);
}
}
*/
// In the components where you need these state updates:
props: ['tasks'],
data() {
return...
}
|
wanghe-fit2cloud
left a comment
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.
/lgtm
|
/approve |
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: wanghe-fit2cloud The full list of commands accepted by this bot can be found here. The pull request process is described here DetailsNeeds approval from an approver in each of these files:
Approvers can indicate their approval by writing |



No description provided.