This repository has been archived on 2023-11-16. You can view files and clone it, but cannot push or open issues or pull requests.
GOA/LLMApi/Data/Contracts/ChatGpt3_5/Message.cs

6 lines
107 B
C#

namespace LLMApi.Data.Contracts.ChatGpt3_5;
public record Message(
string Role,
string? Content
);