/** * List your organization's fine-tuning jobs * API Ref: https://platform.openai.com/docs/api-reference/fine-tunes/list * * @return object|null The response from the OpenAI API, or null if an error occurred. * @since 3.2.0 */ public function list(): ?object { // Build the request path. $path = "/fine-tunes"; // Prepare the URI. $uri = $this->uri->get($path); // Send the GET request. return $this->response->get( $this->http->get($uri) ); } /** * More to follow: https://platform.openai.com/docs/api-reference/fine-tunes **/