Class ChatCompletion
情報
モデルが返すチャット完了応答を、提供された入力に基づいて表します。
public class ChatCompletionInheritance
継承
Inherited Members
継承されたメンバー
- object.GetType(),
- object.MemberwiseClone(),
- object.ToString(),
- object.Equals(object?),
- object.Equals(object?, object?),
- object.ReferenceEquals(object?, object?),
- object.GetHashCode()
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
プロパティの値
Created
The Unix timestamp (in seconds) of when the chat completion was created.
チャット完了が作成された Unix タイムスタンプ(秒単位)です。
[JsonProperty("created")]
public long Created { get; set; }Property Value
プロパティの値
Id
A unique identifier for the chat completion.
チャット完了の固有識別子です。
[JsonProperty("id")]
public string Id { get; set; }Property Value
プロパティの値
Model
The model used for the chat completion.
チャット完了に使用されたモデルです。
[JsonProperty("model")]
public string Model { get; set; }Property Value
プロパティの値
Object
The object type, which is always chat.completion.
オブジェクトの種類で、常に chat.completion です。
[JsonProperty("object")]
public string Object { get; set; }Property Value
プロパティの値
SystemFingerprint
This fingerprint represents the backend configuration that the model runs with.
この指紋は、モデルが実行されるバックエンド構成を表します。
[JsonProperty("system_fingerprint")]
public string SystemFingerprint { get; set; }Property Value
プロパティの値
Usage
Usage statistics for the completion request.
完了リクエストの使用統計です。
[JsonProperty("usage")]
public Usage Usage { get; set; }Property Value
プロパティの値
Namespace: Documentize
Assembly: Documentize.dll