openai/src/0e61da13-6429-426d-a6f9-f57.../code.power

24 lines
599 B
Plaintext

/**
* 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
**/