mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-11-23 17:10:22 +00:00
21 lines
588 B
C#
21 lines
588 B
C#
using System.Text.Json.Serialization;
|
|
using AIStudio.Provider.OpenAI;
|
|
|
|
namespace AIStudio.Provider.Google;
|
|
|
|
/// <summary>
|
|
/// The Google chat 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 readonly record struct ChatRequest(
|
|
string Model,
|
|
IList<Message> Messages,
|
|
bool Stream
|
|
)
|
|
{
|
|
|
|
[JsonExtensionData]
|
|
public Dictionary<string, object?> AdditionalApiParameters { get; init; }
|
|
} |