Completion
Model response for a given text or image query
Operations
Complete
Model response for the given query
function : Complete(model:String, message:Pair<String,String>, token:String) ~ Completion
Parameters
Name | Type | Description |
---|---|---|
model | String | ID of the model to use |
message | Pair<String,String> | completion message and image query. |
token | String | API token |
Return
Type | Description |
---|---|
Completion | completion response |
Complete
Model response for the given query
function : Complete(model:String, message:Pair<String,String>, max_tokens:Int, temperature:Float, top_p:Float, token:String) ~ Completion
Parameters
Name | Type | Description |
---|---|---|
model | String | ID of the model to use |
message | Pair<String,String> | completion message and image query |
max_tokens | Int | maximum number of completion tokens returned by the API |
temperature | Float | amount of randomness in the response, valued between 0 inclusive and 2 exclusive |
top_p | Float | nucleus sampling threshold, valued between 0 and 1 inclusive |
token | String | API token |
Return
Type | Description |
---|---|
Completion | completion response |
Complete
Model response for the given query
function : Complete(model:String, messages:Vector<Pair<String,String>>) ~ Completion
Parameters
Name | Type | Description |
---|---|---|
model | String | ID of the model to use |
messages | Vector<Pair<String,String>> | list of messages comprising the conversation |
Return
Type | Description |
---|---|
Completion | completion response |
Complete
Model response for the given query
function : Complete(model:String, messages:Vector<Pair<String,String>>) ~ Completion
Parameters
Name | Type | Description |
---|---|---|
model | String | ID of the model to use |
messages | Vector<Pair<String,String>> | list of messages comprising the conversation |
Return
Type | Description |
---|---|
Completion | completion response |
Complete
Model response for the given image and query
function : Complete(model:String, message:Pair<String,API.OpenAI.ImageQuery>, token:String) ~ Completion
Parameters
Name | Type | Description |
---|---|---|
model | String | ID of the model to use |
message | Pair<String,APIOpenAIImageQuery> | completion message and image query. |
token | String | API token |
Return
Type | Description |
---|---|
Completion | completion response |
Complete
Model response for the given image and query
function : Complete(model:String, message:Pair<String,API.OpenAI.ImageQuery>, max_tokens:Int, temperature:Float, top_p:Float, token:String) ~ Completion
Parameters
Name | Type | Description |
---|---|---|
model | String | ID of the model to use |
message | Pair<String,APIOpenAIImageQuery> | completion message and image query |
max_tokens | Int | maximum number of completion tokens returned by the API |
temperature | Float | amount of randomness in the response, valued between 0 inclusive and 2 exclusive |
top_p | Float | nucleus sampling threshold, valued between 0 and 1 inclusive |
token | String | API token |
Return
Type | Description |
---|---|
Completion | completion response |
Complete
Model response for the given image and query
function : Complete(model:String, messages:Vector<Pair<String,API.OpenAI.ImageQuery>>) ~ Completion
Parameters
Name | Type | Description |
---|---|---|
model | String | ID of the model to use |
messages | Vector<Pair<String,APIOpenAIImageQuery>> | list of messages comprising the conversation |
Return
Type | Description |
---|---|
Completion | completion response |
Complete
Model response for the given image and query
function : Complete(model:String, messages:Vector<Pair<String,API.OpenAI.ImageQuery>>) ~ Completion
Parameters
Name | Type | Description |
---|---|---|
model | String | ID of the model to use |
messages | Vector<Pair<String,APIOpenAIImageQuery>> | list of messages comprising the conversation |
Return
Type | Description |
---|---|
Completion | completion response |
GetChoices
List of chat completion choices
method : public : GetChoices() ~ Vector<API.OpenAI.Chat.Choice>
Return
Type | Description |
---|---|
Vector<APIOpenAIChatChoice> | completion choices |
GetCreatedAt
Unix timestamp (in seconds) of when the object instance was created
method : public : GetCreatedAt() ~ Int
Return
Type | Description |
---|---|
Int | time with the object instance was created |
GetFirstChoice
List of chat completion choices
method : public : GetFirstChoice() ~ API.OpenAI.Chat.Choice
Return
Type | Description |
---|---|
API.OpenAI.Chat.Choice | completion choices |
GetId
Get object instance API ID
method : public : GetId() ~ String
Return
Type | Description |
---|---|
String | instance ID |
GetModel
ID of the model to use
method : public : GetModel() ~ String
Return
Type | Description |
---|---|
String | ID of the model to use |
GetObject
Get the object type
method : public : GetObject() ~ String
Return
Type | Description |
---|---|
String | object type |
ToString
String representation of the object
method : public : ToString() ~ String
Return
Type | Description |
---|---|
String | string representation |