SA-33 comments and some changes added

This commit is contained in:
Mykhailo Bilodid 2023-10-21 19:19:13 +03:00
parent fcc5f02c48
commit 962ab03c4c
4 changed files with 6 additions and 36 deletions

View File

@ -7,10 +7,11 @@ namespace ShoppingAssistantApi.Application.IServices;
public interface IProductService
{
IAsyncEnumerable<(List<ProductName> ProductNames, WishlistDto Wishlist)> StartNewSearchAndReturnWishlist(Message message, CancellationToken cancellationToken);
IAsyncEnumerable<ServerSentEvent> SearchProductAsync(string wishlistId, MessageCreateDto message, CancellationToken cancellationToken);
// TODO remove all methods below
IAsyncEnumerable<(List<ProductName> ProductNames, WishlistDto Wishlist)> StartNewSearchAndReturnWishlist(Message message, CancellationToken cancellationToken);
IAsyncEnumerable<string> GetProductFromSearch(Message message, CancellationToken cancellationToken);
IAsyncEnumerable<string> GetRecommendationsForProductFromSearchStream(Message message,

View File

@ -7,6 +7,4 @@ public class Wishlist : EntityBase
public string Name { get; set; }
public string Type { get; set; }
public ICollection<Message>? Messages { get; set; }
}

View File

@ -24,14 +24,15 @@ public class ProductService : IProductService
_openAiService = openAiService;
_wishlistsService = wishlistsService;
}
public IAsyncEnumerable<ServerSentEvent> SearchProductAsync(string wishlistId, MessageCreateDto message, CancellationToken cancellationToken)
{
// get all messages from wishlist
// Documentation: https://shchoholiev.atlassian.net/l/cp/JizkynhU
throw new NotImplementedException();
}
// TODO: remove all methods below
public async IAsyncEnumerable<(List<ProductName> ProductNames, WishlistDto Wishlist)> StartNewSearchAndReturnWishlist(Message message, CancellationToken cancellationToken)
{
List<OpenAiMessage> messages = new List<OpenAiMessage>()

View File

@ -187,25 +187,6 @@ public class DbInitialaizer
Name = "Gaming PC",
Type = WishlistTypes.Product.ToString(),
CreatedById = user1.Id,
Messages = new Message[]
{
new Message
{
Text = "Prompt",
Role = MessageRoles.User.ToString(),
WishlistId = ObjectId.Parse("ab79cde6f69abcd3efab65cd"),
CreatedById = user1.Id,
CreatedDateUtc = DateTime.UtcNow
},
new Message
{
Text = "Answer",
Role = MessageRoles.Application.ToString(),
WishlistId = ObjectId.Parse("ab79cde6f69abcd3efab65cd"),
CreatedById = user1.Id,
CreatedDateUtc = DateTime.UtcNow
},
}
},
new Wishlist
{
@ -213,17 +194,6 @@ public class DbInitialaizer
Name = "Generic Wishlist Name",
Type = WishlistTypes.Product.ToString(),
CreatedById = user2.Id,
Messages = new Message[]
{
new Message
{
Text = "Prompt",
Role = MessageRoles.User.ToString(),
WishlistId = ObjectId.Parse("ab6c2c2d9edf39abcd1ef9ab"),
CreatedById = user1.Id,
CreatedDateUtc = DateTime.UtcNow
}
}
}
};