Skip to content

Commit

Permalink
adding prop
Browse files Browse the repository at this point in the history
  • Loading branch information
itsmuntadhar committed Nov 1, 2024
1 parent fdf0aa9 commit b2ed81e
Showing 1 changed file with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -308,4 +308,12 @@ public IEnumerable<ValidationResult> Validate()
/// </summary>
[JsonPropertyName("service_tier")]
public string? ServiceTier { get; set; }
}


/// <summary>
/// Whether or not to store the output of this chat completion request for use in our model distillation or evals products.
/// https://platform.openai.com/docs/api-reference/chat/create?lang=python#chat-create-store
/// </summary>
[JsonPropertyName("store")]
public bool? Store { get; set; } = false;
}

0 comments on commit b2ed81e

Please sign in to comment.