관리-도구
편집 파일: FineTuningContract.php
<?php namespace OpenAI\Contracts\Resources; use OpenAI\Responses\FineTuning\ListJobEventsResponse; use OpenAI\Responses\FineTuning\ListJobsResponse; use OpenAI\Responses\FineTuning\RetrieveJobResponse; interface FineTuningContract { /** * 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. * * @see https://platform.openai.com/docs/api-reference/fine-tuning/create * * @param array<string, mixed> $parameters */ public function createJob(array $parameters): RetrieveJobResponse; /** * List your organization's fine-tuning jobs. * * @see https://platform.openai.com/docs/api-reference/fine-tuning/undefined * * @param array<string, mixed> $parameters */ public function listJobs(array $parameters = []): ListJobsResponse; /** * Get info about a fine-tuning job. * * @see https://platform.openai.com/docs/api-reference/fine-tuning/retrieve */ public function retrieveJob(string $jobId): RetrieveJobResponse; /** * Immediately cancel a fine-tune job. * * @see https://platform.openai.com/docs/api-reference/fine-tuning/cancel */ public function cancelJob(string $jobId): RetrieveJobResponse; /** * Get status updates for a fine-tuning job. * * @see https://platform.openai.com/docs/api-reference/fine-tuning/list-events * * @param array<string, mixed> $parameters */ public function listJobEvents(string $jobId, array $parameters = []): ListJobEventsResponse; }