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/Game/ChatGpt3_5/AnswerRequest.cs

8 lines
164 B
C#
Raw Permalink Normal View History

using LLMApi.Data.Contracts.ChatGpt3_5;
namespace LLMApi.Data.Contracts.Game.ChatGpt3_5;
public record AnswerRequest(
2023-09-23 21:51:28 +02:00
Message[]? Context,
string Prompt
);