Files
Seasoned/Seasoned.Backend/Services/IRecipeService.cs
2026-03-18 20:17:45 +00:00

10 lines
299 B
C#

using Seasoned.Backend.DTOs;
namespace Seasoned.Backend.Services;
public interface IRecipeService
{
Task<RecipeResponseDto> ParseRecipeImageAsync(IFormFile image);
Task<ChefConsultResponseDto> ConsultChefAsync(string userPrompt);
Task<Pgvector.Vector> GetEmbeddingAsync(string text);
}