Stronger prompting, UI update
This commit is contained in:
6
Seasoned.Backend/DTOs/ChatRequestDto.cs
Normal file
6
Seasoned.Backend/DTOs/ChatRequestDto.cs
Normal file
@@ -0,0 +1,6 @@
|
||||
namespace Seasoned.Backend.DTOs;
|
||||
|
||||
public class ChatRequestDto
|
||||
{
|
||||
public string Prompt { get; set; } = string.Empty;
|
||||
}
|
||||
7
Seasoned.Backend/DTOs/ChefConsultResponseDto.cs
Normal file
7
Seasoned.Backend/DTOs/ChefConsultResponseDto.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
namespace Seasoned.Backend.DTOs;
|
||||
|
||||
public class ChefConsultResponseDto
|
||||
{
|
||||
public string Reply { get; set; } = string.Empty;
|
||||
public RecipeResponseDto? Recipe { get; set; }
|
||||
}
|
||||
@@ -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();
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user