mirror of
https://github.com/Shchoholiev/shopping-assistant-api.git
synced 2025-04-03 16:19:46 +00:00
changed the logic in the service and added some changes to the tests
This commit is contained in:
parent
51aca2e270
commit
98377dbf9d
@ -55,127 +55,110 @@ public class ProductService : IProductService
|
||||
}
|
||||
};
|
||||
|
||||
if (countOfMessage==1)
|
||||
|
||||
var messagesForOpenAI = new List<OpenAiMessage>();
|
||||
|
||||
foreach (var item in previousMessages.Items)
|
||||
{
|
||||
yield return new ServerSentEvent
|
||||
{
|
||||
Event = SearchEventType.Message,
|
||||
Data = previousMessages.Items.FirstOrDefault()?.Text
|
||||
};
|
||||
}
|
||||
|
||||
if(countOfMessage>1)
|
||||
{
|
||||
var messagesForOpenAI = new List<OpenAiMessage>();
|
||||
messagesForOpenAI.Add(new OpenAiMessage()
|
||||
{
|
||||
Role = OpenAiRoleExtensions.RequestConvert(OpenAiRole.System),
|
||||
Content = promptForGpt
|
||||
});
|
||||
|
||||
foreach (var item in previousMessages.Items)
|
||||
{
|
||||
messagesForOpenAI.Add(
|
||||
new OpenAiMessage()
|
||||
messagesForOpenAI
|
||||
.Add(new OpenAiMessage()
|
||||
{
|
||||
Role = item.Role.ToLower(),
|
||||
Content = item.Text
|
||||
Content = item.Text
|
||||
});
|
||||
}
|
||||
|
||||
messagesForOpenAI.Add(new OpenAiMessage()
|
||||
{
|
||||
Role = OpenAiRoleExtensions.RequestConvert(OpenAiRole.User),
|
||||
Content = message.Text
|
||||
});
|
||||
|
||||
chatRequest.Messages.AddRange(messagesForOpenAI);
|
||||
|
||||
var suggestionBuffer = new Suggestion();
|
||||
var messageBuffer = new MessagePart();
|
||||
var productBuffer = new ProductName();
|
||||
var currentDataType = SearchEventType.Wishlist;
|
||||
var dataTypeHolder = string.Empty;
|
||||
|
||||
await foreach (var data in _openAiService.GetChatCompletionStream(chatRequest, cancellationToken))
|
||||
{
|
||||
if (data.Contains("["))
|
||||
{
|
||||
if (dataTypeHolder=="[Message]" && messageBuffer.Text!=null)
|
||||
{
|
||||
_wishlistsService.AddMessageToPersonalWishlistAsync(wishlistId, new MessageCreateDto()
|
||||
{
|
||||
Text = messageBuffer.Text,
|
||||
}, cancellationToken);
|
||||
}
|
||||
dataTypeHolder = string.Empty;
|
||||
dataTypeHolder += data;
|
||||
}
|
||||
|
||||
messagesForOpenAI.Add(new OpenAiMessage()
|
||||
{
|
||||
Role = OpenAiRoleExtensions.RequestConvert(OpenAiRole.User),
|
||||
Content = message.Text
|
||||
});
|
||||
|
||||
chatRequest.Messages.AddRange(messagesForOpenAI);
|
||||
|
||||
var suggestionBuffer = new Suggestion();
|
||||
var messageBuffer = new MessagePart();
|
||||
var productBuffer = new ProductName();
|
||||
var currentDataType = SearchEventType.Wishlist;
|
||||
var dataTypeHolder = string.Empty;
|
||||
|
||||
await foreach (var data in _openAiService.GetChatCompletionStream(chatRequest, cancellationToken))
|
||||
else if (data.Contains("]"))
|
||||
{
|
||||
if (data.Contains("["))
|
||||
dataTypeHolder += data;
|
||||
currentDataType = DetermineDataType(dataTypeHolder);
|
||||
}
|
||||
|
||||
else if (dataTypeHolder=="[" && !data.Contains("["))
|
||||
{
|
||||
dataTypeHolder += data;
|
||||
}
|
||||
|
||||
else
|
||||
{
|
||||
switch (currentDataType)
|
||||
{
|
||||
if (dataTypeHolder=="[Message]" && messageBuffer.Text!=null)
|
||||
{
|
||||
_wishlistsService.AddMessageToPersonalWishlistAsync(wishlistId, new MessageCreateDto()
|
||||
case SearchEventType.Message:
|
||||
yield return new ServerSentEvent
|
||||
{
|
||||
Text = messageBuffer.Text,
|
||||
}, cancellationToken);
|
||||
}
|
||||
dataTypeHolder = string.Empty;
|
||||
dataTypeHolder += data;
|
||||
}
|
||||
Event = SearchEventType.Message,
|
||||
Data = data
|
||||
};
|
||||
messageBuffer.Text += data;
|
||||
break;
|
||||
|
||||
else if (data.Contains("]"))
|
||||
{
|
||||
dataTypeHolder += data;
|
||||
currentDataType = DetermineDataType(dataTypeHolder);
|
||||
}
|
||||
|
||||
else if (dataTypeHolder=="[" && !data.Contains("["))
|
||||
{
|
||||
dataTypeHolder += data;
|
||||
}
|
||||
|
||||
else
|
||||
{
|
||||
switch (currentDataType)
|
||||
{
|
||||
case SearchEventType.Message:
|
||||
case SearchEventType.Suggestion:
|
||||
if (data.Contains(";"))
|
||||
{
|
||||
yield return new ServerSentEvent
|
||||
{
|
||||
Event = SearchEventType.Message,
|
||||
Data = data
|
||||
Event = SearchEventType.Suggestion,
|
||||
Data = suggestionBuffer.Text
|
||||
};
|
||||
messageBuffer.Text += data;
|
||||
break;
|
||||
|
||||
case SearchEventType.Suggestion:
|
||||
if (data.Contains(";"))
|
||||
{
|
||||
yield return new ServerSentEvent
|
||||
{
|
||||
Event = SearchEventType.Suggestion,
|
||||
Data = suggestionBuffer.Text
|
||||
};
|
||||
suggestionBuffer.Text = string.Empty;
|
||||
break;
|
||||
}
|
||||
suggestionBuffer.Text += data;
|
||||
suggestionBuffer.Text = string.Empty;
|
||||
break;
|
||||
}
|
||||
suggestionBuffer.Text += data;
|
||||
break;
|
||||
|
||||
case SearchEventType.Product:
|
||||
if (data.Contains(";"))
|
||||
case SearchEventType.Product:
|
||||
if (data.Contains(";"))
|
||||
{
|
||||
yield return new ServerSentEvent
|
||||
{
|
||||
yield return new ServerSentEvent
|
||||
{
|
||||
Event = SearchEventType.Product,
|
||||
Data = productBuffer.Name
|
||||
};
|
||||
productBuffer.Name = string.Empty;
|
||||
Event = SearchEventType.Product,
|
||||
Data = productBuffer.Name
|
||||
};
|
||||
productBuffer.Name = string.Empty;
|
||||
|
||||
//a complete description of the entity when the Amazon API is connected
|
||||
await _wishlistsService.AddProductToPersonalWishlistAsync(wishlistId, new ProductCreateDto()
|
||||
{
|
||||
Url = "",
|
||||
Name = productBuffer.Name,
|
||||
Rating = 0,
|
||||
Description = "",
|
||||
ImagesUrls = new []{"", ""},
|
||||
WasOpened = false
|
||||
}, cancellationToken);
|
||||
|
||||
break;
|
||||
}
|
||||
productBuffer.Name += data;
|
||||
break;
|
||||
}
|
||||
//a complete description of the entity when the Amazon API is connected
|
||||
await _wishlistsService.AddProductToPersonalWishlistAsync(wishlistId, new ProductCreateDto()
|
||||
{
|
||||
Url = "",
|
||||
Name = productBuffer.Name,
|
||||
Rating = 0,
|
||||
Description = "",
|
||||
ImagesUrls = new []{"", ""},
|
||||
WasOpened = false
|
||||
}, cancellationToken);
|
||||
break;
|
||||
}
|
||||
productBuffer.Name += data;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -220,13 +220,8 @@ public class DbInitializer
|
||||
},
|
||||
new Message
|
||||
{
|
||||
Text = "You are a Shopping Assistant that helps people find product recommendations. Ask user additional questions if more context needed." +
|
||||
"\nYou must return data with one of the prefixes:" +
|
||||
"\n[Question] - return question" +
|
||||
"\n[Suggestions] - return semicolon separated suggestion how to answer to a question" +
|
||||
"\n[Message] - return text" +
|
||||
"\n[Products] - return semicolon separated product names",
|
||||
Role = "system",
|
||||
Text = "What are you looking for?",
|
||||
Role = "assistant",
|
||||
WishlistId = wishlistId4,
|
||||
CreatedById = user2.Id,
|
||||
CreatedDateUtc = DateTime.UtcNow
|
||||
@ -234,15 +229,7 @@ public class DbInitializer
|
||||
new Message
|
||||
{
|
||||
Text = "What are you looking for?",
|
||||
Role = "system",
|
||||
WishlistId = wishlistId4,
|
||||
CreatedById = user2.Id,
|
||||
CreatedDateUtc = DateTime.UtcNow
|
||||
},
|
||||
new Message
|
||||
{
|
||||
Text = "What are you looking for?",
|
||||
Role = "system",
|
||||
Role = "assistant",
|
||||
WishlistId = wishlistId3,
|
||||
CreatedById = user2.Id,
|
||||
CreatedDateUtc = DateTime.UtcNow
|
||||
|
@ -57,7 +57,7 @@ public class ProductsTests : TestsBase
|
||||
if (eventName == "event: Message")
|
||||
{
|
||||
foundMessageEvent = true;
|
||||
Assert.Equal("\"What are you looking for?\"", eventData);
|
||||
Assert.NotNull(eventData);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -49,7 +49,8 @@ public class ProductTests
|
||||
" 3070TI", " ;", " GTX", " 4070TI", " ;", " ?"
|
||||
};
|
||||
|
||||
var expectedMessages = new List<string> { "What are you looking for?" };
|
||||
var expectedMessages = new List<string> { " What", " u", " want", " ?" };
|
||||
var expectedSuggestion = new List<string> { " USB-C", " Keyboard ultra", " USB-C" };
|
||||
|
||||
// Mock the GetChatCompletionStream method to provide the expected SSE data
|
||||
_openAiServiceMock.Setup(x => x.GetChatCompletionStream(It.IsAny<ChatCompletionRequest>(), cancellationToken))
|
||||
@ -63,10 +64,10 @@ public class ProductTests
|
||||
|
||||
_wishListServiceMock
|
||||
.Setup(m => m.GetMessagesPageFromPersonalWishlistAsync(
|
||||
It.IsAny<string>(), // Очікуваний параметр wishlistId
|
||||
It.IsAny<int>(), // Очікуваний параметр pageNumber
|
||||
It.IsAny<int>(), // Очікуваний параметр pageSize
|
||||
It.IsAny<CancellationToken>()) // Очікуваний параметр cancellationToken
|
||||
It.IsAny<string>(),
|
||||
It.IsAny<int>(),
|
||||
It.IsAny<int>(),
|
||||
It.IsAny<CancellationToken>())
|
||||
)
|
||||
.ReturnsAsync(new PagedList<MessageDto>(
|
||||
new List<MessageDto>
|
||||
@ -78,7 +79,6 @@ public class ProductTests
|
||||
CreatedById = "User2",
|
||||
Role = "User"
|
||||
},
|
||||
|
||||
},
|
||||
1,
|
||||
1,
|
||||
@ -105,6 +105,7 @@ public class ProductTests
|
||||
// Check if the actual SSE events match the expected SSE events
|
||||
Assert.NotNull(actualSseEvents);
|
||||
Assert.Equal(expectedMessages, receivedMessages);
|
||||
Assert.Equal(expectedSuggestion, receivedSuggestions);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user