mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-09-18 16:00:22 +00:00
18 lines
508 B
C#
18 lines
508 B
C#
|
namespace AIStudio.Provider.OpenAI;
|
||
|
|
||
|
/// <summary>
|
||
|
/// The OpenAI's legacy chat completion request model.
|
||
|
/// </summary>
|
||
|
/// <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>
|
||
|
public record ChatCompletionAPIRequest(
|
||
|
string Model,
|
||
|
IList<Message> Messages,
|
||
|
bool Stream
|
||
|
)
|
||
|
{
|
||
|
public ChatCompletionAPIRequest() : this(string.Empty, [], true)
|
||
|
{
|
||
|
}
|
||
|
}
|