Class ChatCompletion

情報

提供された入力に基づいてモデルから返されるチャット完了レスポンスを表します。

public class ChatCompletion

継承

objectChatCompletion

継承されたメンバー

コンストラクタ

ChatCompletion()

public ChatCompletion()

プロパティ

Choices

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

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

プロパティの値

List<Choice>

Created

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

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

プロパティの値

long

Id

チャット完了の一意の識別子。

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

プロパティの値

string

Model

チャット完了に使用されるモデル。

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

プロパティの値

string

Object

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

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

プロパティの値

string

SystemFingerprint

このフィンガープリントは、モデルが実行されるバックエンド設定を表します。

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

プロパティの値

string

Usage

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

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

プロパティの値

Usage

名前空間: Documentize アセンブリ: Documentize.dll

 日本語