namespace Yi.Framework.AiHub.Application.Contracts.Dtos.OpenAiDto; public class ChatCompletionsInput { public List Messages { get; set; } public bool Stream { get; set; } public string? Prompt { get; set; } public string Model { get; set; } public decimal Temperature { get; set; } public int max_tokens { get; set; } } public class OpenAiMessage { public string Role { get; set; } public string Content { get; set; } }