Removed deprecated seed & unused frequency penalty parameters

This commit is contained in:
Thorsten Sommer 2025-08-31 17:22:12 +02:00
parent e6ae96f96f
commit c4953b6ac9
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -8,14 +8,8 @@ namespace AIStudio.Provider.OpenAI;
/// <param name="Model">Which model to use for chat completion.</param>
/// <param name="Messages">The chat messages.</param>
/// <param name="Stream">Whether to stream the chat completion.</param>
/// <param name="Seed">The seed for the chat completion.</param>
/// <param name="FrequencyPenalty">The frequency penalty for the chat completion.</param>
public readonly record struct ChatRequest(
string Model,
IList<Message> Messages,
bool Stream,
int Seed,
[Range(-2.0f, 2.0f)]
float FrequencyPenalty
bool Stream
);