package OpenAI::API::Request::Completion; use strict; use warnings; use Moo; use strictures 2; use namespace::clean; extends 'OpenAI::API::Request'; use Types::Standard qw(Any Bool Int Map Num Str); has model => ( is => 'rw', isa => Str, required => 1, ); has prompt => ( is => 'rw', isa => Str, required => 1, ); has suffix => ( is => 'rw', isa => Str, ); has max_tokens => ( is => 'rw', isa => Int, ); has temperature => ( is => 'rw', isa => Num, ); has top_p => ( is => 'rw', isa => Num, ); has n => ( is => 'rw', isa => Int, ); has stream => ( is => 'rw', isa => Bool, ); has logprobs => ( is => 'rw', isa => Int, ); has echo => ( is => 'rw', isa => Bool, ); has stop => ( is => 'rw', isa => Any, ); has presence_penalty => ( is => 'rw', isa => Num, ); has frequency_penalty => ( is => 'rw', isa => Num, ); has best_of => ( is => 'rw', isa => Int, ); has logit_bias => ( is => 'rw', isa => Map [ Int, Int ], ); has user => ( is => 'rw', isa => Str, ); sub endpoint { 'completions' } sub method { 'POST' } 1; __END__ =head1 NAME OpenAI::API::Request::Completion - Request class for OpenAI API text completion =head1 SYNOPSIS use OpenAI::API::Request::Completion; my $completion = OpenAI::API::Request::Completion->new( model => 'text-davinci-003', prompt => 'Once upon a time', max_tokens => 50, ); my $res = $completion->send(); # or: my $res = $completion->send( http_response => 1 ); my $text = $res->{choices}[0]{text}; # or: my $text = "$res"; =head1 DESCRIPTION This module provides a request class for interacting with the OpenAI API's chat-based completion endpoint. It inherits from L. =head1 ATTRIBUTES =head2 model ID of the model to use. See L for a reference of them. =head2 prompt The prompt for the text generation. =head2 suffix [optional] The suffix that comes after a completion of inserted text. =head2 max_tokens [optional] The maximum number of tokens to generate. Most models have a context length of 2048 tokens (except for the newest models, which support 4096. =head2 temperature [optional] What sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. =head2 top_p [optional] An alternative to sampling with temperature, called nucleus sampling. We generally recommend altering this or C but not both. =head2 n [optional] How many completions to generate for each prompt. Use carefully and ensure that you have reasonable settings for C and C. =head2 stop [optional] Up to 4 sequences where the API will stop generating further tokens. The returned text will not contain the stop sequence. =head2 frequency_penalty [optional] Number between -2.0 and 2.0. Positive values penalize new tokens based on their existing frequency in the text so far. =head2 presence_penalty [optional] Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the text so far. =head2 best_of [optional] Generates best_of completions server-side and returns the "best" (the one with the highest log probability per token). Use carefully and ensure that you have reasonable settings for C and C. =head1 METHODS =head2 add_message($role, $content) This method adds a new message with the given role and content to the messages attribute. =head2 send_message($content) This method adds a user message with the given content, sends the request, and returns the response. It also adds the assistant's response to the messages attribute. =head1 INHERITED METHODS This module inherits the following methods from L: =head2 send(%args) =head2 send_async(%args) =head1 SEE ALSO L, L