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/ChatCompletionResponse.cs

11 lines
193 B
C#
Raw Permalink Normal View History

2023-09-23 11:21:46 +02:00
namespace LLMApi.Data.Contracts.ChatGpt3_5;
public record ChatCompletionResponse(
2023-09-23 12:00:41 +02:00
string Id,
string Object,
int Created,
string Model,
Choice[] Choices,
Usage Usage
);