OpenAPI::Client::OpenAI - A client for the OpenAI API
use OpenAPI::Client::OpenAI;
# The OPENAI_API_KEY environment variable must be set
# See https://platform.openai.com/api-keys and ENVIRONMENT VARIABLES below
my $client = OpenAPI::Client::OpenAI->new();
my $tx = $client->createCompletion(
{
body => {
model => 'gpt-3.5-turbo-instruct',
prompt => 'What is the capital of France?'
temperature => 0, # optional, between 0 and 1, with 0 being the least random
max_tokens => 100, # optional, the maximum number of tokens to generate
}
}
);
my $response_data = $tx->res->json;
print Dumper($response_data);
OpenAPI::Client::OpenAI is a client for the OpenAI API built on top of OpenAPI::Client. This module automatically handles the API key authentication according to the provided environment.
Note that the OpenAI API is a paid service. You will need to sign up for an account.
See the examples/
directory in the distribution for more examples, along
with the tests.
Due to the extremely rapid development of OpenAI's API, this module may may not be up-to-date with the latest changes. Further releases of this module may break your code if OpenAI changes their API.
my $client = OpenAPI::Client::OpenAI->new( $specification, %options );
Create a new OpenAI API client. The following options can be provided:
-
$specification
The path to the OpenAPI specification file (YAML). Defaults to the "openai.yaml" file in the distribution's "share" directory.
You can find the latest version of this file at https://github.com/openai/openai-openapi.
Examples can be found in the
t/
andexamples/
directories of the distribution.
Additional options are passed to the parent class, OpenAPI::Client, with the exception of the following extra options:
Other methods are documented in OpenAPI::Client::OpenAI::Methods.
The schema is documented in OpenAPI::Client::OpenAI::Schema.
The following methods are deprecated and will be removed in a future release:
-
create_chat_completion
Replaced with
createChatCompletion
. -
create_completion
Replaced with
createCompletion
. -
create_embedding
Replaced with
createEmbedding
. -
create_image
Replaced with
createImage
. -
create_moderation
Replaced with
createModeration
. -
list_models
Replaced with
listModels
.
Originally, these methods were named using snake_case
, but to simplify the
code, we retained the camelCase
names in the main module.
The following environment variables are used by this module:
-
OPENAI_API_KEY
The API key used to authenticate requests to the OpenAI API.
OpenAI::API - the deprecated precursor to this module.
Nelson Ferraz, nferraz@gmail.com
- Curtis "Ovid" Poe, https://github.com/Ovid
- Veesh Goldman, https://github.com/rabbiveesh
- Graham Knop, https://github.com/haarg
Copyright (C) 2023-2024 by Nelson Ferraz
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.14.0 or, at your option, any later version of Perl 5 you may have available.