Class ChatCompletion

情報

モデルが返すチャット完了応答を、提供された入力に基づいて表します。

public class ChatCompletion

Inheritance

継承

objectChatCompletion

Inherited Members

継承されたメンバー

Constructors

コンストラクター

ChatCompletion()

public ChatCompletion()

Properties

プロパティ

Choices

A list of chat completion choices. Can be more than one if n is greater than 1.

チャット完了の選択肢のリストです。n が 1 より大きい場合、複数になることがあります。

[JsonProperty("choices")]
public List<choice> Choices { get; set; }

Property Value

プロパティの値

List<Choice>

Created

The Unix timestamp (in seconds) of when the chat completion was created.

チャット完了が作成された Unix タイムスタンプ(秒単位)です。

[JsonProperty("created")]
public long Created { get; set; }

Property Value

プロパティの値

long

Id

A unique identifier for the chat completion.

チャット完了の固有識別子です。

[JsonProperty("id")]
public string Id { get; set; }

Property Value

プロパティの値

string

Model

The model used for the chat completion.

チャット完了に使用されたモデルです。

[JsonProperty("model")]
public string Model { get; set; }

Property Value

プロパティの値

string

Object

The object type, which is always chat.completion.

オブジェクトの種類で、常に chat.completion です。

[JsonProperty("object")]
public string Object { get; set; }

Property Value

プロパティの値

string

SystemFingerprint

This fingerprint represents the backend configuration that the model runs with.

この指紋は、モデルが実行されるバックエンド構成を表します。

[JsonProperty("system_fingerprint")]
public string SystemFingerprint { get; set; }

Property Value

プロパティの値

string

Usage

Usage statistics for the completion request.

完了リクエストの使用統計です。

[JsonProperty("usage")]
public Usage Usage { get; set; }

Property Value

プロパティの値

Usage

Namespace: Documentize
Assembly: Documentize.dll

 日本語