|
NAMEOpenAI::API::Request::File::List - files endpoint SYNOPSIS use OpenAI::API::Request::File::List;
my $request = OpenAI::API::Request::File::List->new();
my $res = $request->send();
my @files = @{ $res->{data} };
DESCRIPTIONReturns a list of files that belong to the user's organization. METHODSnew()send()Sends the request and returns a data structured similar to the one documented in the API reference. SEE ALSOOpenAI API Reference: Files <https://platform.openai.com/docs/api-reference/files>
|