added a small change to the service

This commit is contained in:
stasex 2023-10-25 14:45:44 +03:00
parent 77b14bf4c7
commit 73b9b5213f

View File

@ -99,6 +99,12 @@ public class ProductService : IProductService
});
}
messagesForOpenAI.Add(new OpenAiMessage()
{
Role = MessageRoles.User.ToString().ToLower(),
Content = message.Text
});
chatRequest = new ChatCompletionRequest
{
Messages = messagesForOpenAI,