mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 22:29:07 +00:00
8 lines
280 B
C#
8 lines
280 B
C#
namespace AIStudio.Provider.OpenAI;
|
|
|
|
/// <summary>
|
|
/// Chat message model.
|
|
/// </summary>
|
|
/// <param name="Content">The text content of the message.</param>
|
|
/// <param name="Role">The role of the message.</param>
|
|
public readonly record struct Message(string Content, string Role); |