namespace LLMApi.Data.Contracts.ChatGpt3_5; public record ChatCompletionRequest( string Model, Message[] Messages ); public record Message( string Role, string? Content );