Completions Class

  • java.lang.Object
    • com.azure.ai.openai.models.Completions

Implements

public final class Completions
implements JsonSerializable<Completions>

Representation of the response data from a completions request. Completions support a wide variety of tasks and generate text that continues from or "completes" provided prompt data.

Method Summary

Modifier and Type Method and Description
static Completions fromJson(JsonReader jsonReader)

Reads an instance of Completions from the JsonReader.

List<Choice> getChoices()

Get the choices property: The collection of completions choices associated with this completions response.

OffsetDateTime getCreatedAt()

Get the createdAt property: The first timestamp associated with generation activity for this completions response, represented as seconds since the beginning of the Unix epoch of 00:00 on 1 Jan 1970.

String getId()

Get the id property: A unique identifier associated with this completions response.

List<ContentFilterResultsForPrompt> getPromptFilterResults()

Get the promptFilterResults property: Content filtering results for zero or more prompts in the request.

CompletionsUsage getUsage()

Get the usage property: Usage information for tokens processed and generated as part of this completions operation.

JsonWriter toJson(JsonWriter jsonWriter)

Methods inherited from java.lang.Object

Method Details

fromJson

public static Completions fromJson(JsonReader jsonReader)

Reads an instance of Completions from the JsonReader.

Parameters:

jsonReader - The JsonReader being read.

Returns:

An instance of Completions if the JsonReader was pointing to an instance of it, or null if it was pointing to JSON null.

Throws:

IOException

- If the deserialized JSON object was missing any required properties.

getChoices

public List getChoices()

Get the choices property: The collection of completions choices associated with this completions response. Generally, `n` choices are generated per provided prompt with a default value of 1. Token limits and other settings may limit the number of choices generated.

Returns:

the choices value.

getCreatedAt

public OffsetDateTime getCreatedAt()

Get the createdAt property: The first timestamp associated with generation activity for this completions response, represented as seconds since the beginning of the Unix epoch of 00:00 on 1 Jan 1970.

Returns:

the createdAt value.

getId

public String getId()

Get the id property: A unique identifier associated with this completions response.

Returns:

the id value.

getPromptFilterResults

public List getPromptFilterResults()

Get the promptFilterResults property: Content filtering results for zero or more prompts in the request. In a streaming request, results for different prompts may arrive at different times or in different orders.

Returns:

the promptFilterResults value.

getUsage

public CompletionsUsage getUsage()

Get the usage property: Usage information for tokens processed and generated as part of this completions operation.

Returns:

the usage value.

toJson

public JsonWriter toJson(JsonWriter jsonWriter)

Parameters:

jsonWriter

Throws:

Applies to