createFineTune abstract method

  1. @Post(path: "/v1/fine-tunes")
Future<Response<FineTune>> createFineTune(
  1. @Body() FineTuneRequest request
)

Creates a job that fine-tunes a specified model from a given dataset. Response includes details of the enqueued job including job status and the name of the fine-tuned models once complete.

Implementation

@Post(path: "/v1/fine-tunes")
Future<Response<FineTune>> createFineTune(
  @Body() FineTuneRequest request,
);