8 lines
130 B
C#
8 lines
130 B
C#
|
namespace LLMApi.Data.Contracts.ChatGpt3_5;
|
||
|
|
||
|
public record Choice(
|
||
|
int Index,
|
||
|
Message Message,
|
||
|
string FinishReason
|
||
|
);
|