mirror of
https://github.com/QuotifyTeam/QuotifyBE.git
synced 2025-12-16 19:00:07 +01:00
chore: add core dependency, and a DTO for user input
This commit is contained in:
12
DTOs/AskLLMInDTO.cs
Normal file
12
DTOs/AskLLMInDTO.cs
Normal 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;
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
@@ -29,6 +29,7 @@
|
|||||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||||
</PackageReference>
|
</PackageReference>
|
||||||
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.22.1" />
|
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.22.1" />
|
||||||
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
||||||
<PackageReference Include="Npgsql" Version="9.0.3" />
|
<PackageReference Include="Npgsql" Version="9.0.3" />
|
||||||
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="9.0.4" />
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="9.0.4" />
|
||||||
<PackageReference Include="Swashbuckle.AspNetCore" Version="9.0.3" />
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="9.0.3" />
|
||||||
|
|||||||
Reference in New Issue
Block a user