SA-243 Save message at the end of product search

- Add message saving on "[DONE]" text in SearchProductAsync()
This commit is contained in:
shchoholiev 2023-12-17 17:10:41 +00:00
parent 07186c3052
commit e13bb4bbed
2 changed files with 21 additions and 2 deletions

View File

@ -73,7 +73,11 @@ public class OpenAiService : IOpenAiService
if (string.IsNullOrEmpty(line)) continue; if (string.IsNullOrEmpty(line)) continue;
var json = line?.Substring(6, line.Length - 6); var json = line?.Substring(6, line.Length - 6);
if (json == "[DONE]") yield break; if (json == "[DONE]")
{
yield return json;
yield break;
}
var data = JsonConvert.DeserializeObject<OpenAiResponse>(json); var data = JsonConvert.DeserializeObject<OpenAiResponse>(json);

View File

@ -95,7 +95,20 @@ public class ProductService : IProductService
await foreach (var data in _openAiService.GetChatCompletionStream(chatRequest, cancellationToken)) await foreach (var data in _openAiService.GetChatCompletionStream(chatRequest, cancellationToken))
{ {
if (data.Contains('[')) if (data == "[DONE]")
{
if (!string.IsNullOrEmpty(messageBuffer.Text))
{
_ = await _wishlistsService.AddMessageToPersonalWishlistAsync(wishlistId, new MessageDto()
{
Text = messageBuffer.Text,
Role = MessageRoles.Application.ToString(),
}, cancellationToken);
}
yield break;
}
else if (data.Contains('['))
{ {
dataTypeHolder = data; dataTypeHolder = data;
} }
@ -110,6 +123,8 @@ public class ProductService : IProductService
Text = messageBuffer.Text, Text = messageBuffer.Text,
Role = MessageRoles.Application.ToString(), Role = MessageRoles.Application.ToString(),
}, cancellationToken); }, cancellationToken);
messageBuffer.Text = string.Empty;
} }
dataTypeHolder += data; dataTypeHolder += data;