Files
Chatbot-ElDia/ChatbotApi/Models/ChatRequest.cs

12 lines
363 B
C#
Raw Normal View History

2025-11-18 14:34:26 -03:00
using System.ComponentModel.DataAnnotations;
public class ChatRequest
{
[Required]
[MaxLength(200)]
public required string Message { get; set; }
public string? ContextUrl { get; set; }
public string? ConversationSummary { get; set; }
public List<string>? ShownArticles { get; set; }
public string? SystemPromptOverride { get; set; }
2025-11-18 14:34:26 -03:00
}