mirror of
https://github.com/QuotifyTeam/QuotifyBE.git
synced 2025-12-16 11:20:05 +01:00
13 lines
323 B
C#
13 lines
323 B
C#
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;
|
|
|
|
};
|
|
|