Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | import type { CreateFineTuningJobRequestBody } from '@shared/types/api/routes/fine-tuning-api/request';
export const azureTransformFinetuneBody = (
body: CreateFineTuningJobRequestBody,
): CreateFineTuningJobRequestBody => {
const _body = { ...body } as CreateFineTuningJobRequestBody;
// if (_body.method && !_body.hyperparameters) {
// const hyperparameters =
// _body.method[_body.method.type]?.hyperparameters ?? {};
// _body.hyperparameters = {
// ...hyperparameters,
// } as unknown as typeof _body.hyperparameters;
// delete _body.method;
// } // TODO: fix this
return {
..._body,
};
};
|