You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
624 B
JavaScript
25 lines
624 B
JavaScript
import request from "@/utils/request";
|
|
|
|
export function getAiTrainingEvaluation(taskKey) {
|
|
return request({
|
|
url: `/api/student/training-tasks/${taskKey}/ai-evaluation`,
|
|
method: "get",
|
|
});
|
|
}
|
|
|
|
export function requestAiTrainingHelp(taskKey) {
|
|
return request({
|
|
url: `/api/student/training-tasks/${taskKey}/ai-evaluation/help`,
|
|
method: "post",
|
|
headers: { repeatSubmit: false },
|
|
});
|
|
}
|
|
|
|
export function requestAiTrainingAssessment(taskKey) {
|
|
return request({
|
|
url: `/api/student/training-tasks/${taskKey}/ai-evaluation/assessment`,
|
|
method: "post",
|
|
headers: { repeatSubmit: false },
|
|
});
|
|
}
|