fix: do not assume a default model in DTO

This commit is contained in:
2025-07-29 13:07:04 +02:00
parent 870fcf7573
commit 56bd82f6a2
2 changed files with 3 additions and 3 deletions

View File

@@ -2,8 +2,8 @@ namespace QuotifyBE.DTOs;
public record class AskLLMInDTO
{
public string? CustomPrompt { get; set; }
public string? Model { get; set; } = "deepclaude";
public string? CustomPrompt { get; set; } = null;
public string? Model { get; set; } = null;
public float? Temperature { get; set; } = 0.8f;
public int? CategoryId { get; set; } = null;
public bool? UseSampleQuote { get; set; } = false;