chore: add core dependency, and a DTO for user input

This commit is contained in:
2025-07-23 18:24:35 +02:00
parent df4cd1c8a7
commit bc05e91790
2 changed files with 13 additions and 0 deletions

12
DTOs/AskLLMInDTO.cs Normal file
View File

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