Stronger prompting, UI update

This commit is contained in:
2026-03-12 20:17:25 +00:00
parent 3127ccbdbe
commit 48b015e095
10 changed files with 236 additions and 2 deletions

View File

@@ -0,0 +1,6 @@
namespace Seasoned.Backend.DTOs;
public class ChatRequestDto
{
public string Prompt { get; set; } = string.Empty;
}

View File

@@ -0,0 +1,7 @@
namespace Seasoned.Backend.DTOs;
public class ChefConsultResponseDto
{
public string Reply { get; set; } = string.Empty;
public RecipeResponseDto? Recipe { get; set; }
}

View File

@@ -6,4 +6,5 @@ public class RecipeResponseDto
public string Icon { get; set; } = "mdi-silverware-fork-knife";
public List<string> Ingredients { get; set; } = new();
public List<string> Instructions { get; set; } = new();
}