mirror of
https://github.com/Shchoholiev/shopping-assistant-api.git
synced 2025-04-03 16:19:46 +00:00
SA-243 Save message at the end of product search
- Add message saving on "[DONE]" text in SearchProductAsync()
This commit is contained in:
parent
07186c3052
commit
e13bb4bbed
@ -73,7 +73,11 @@ public class OpenAiService : IOpenAiService
|
||||
if (string.IsNullOrEmpty(line)) continue;
|
||||
|
||||
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);
|
||||
|
||||
|
@ -95,7 +95,20 @@ public class ProductService : IProductService
|
||||
|
||||
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;
|
||||
}
|
||||
@ -110,6 +123,8 @@ public class ProductService : IProductService
|
||||
Text = messageBuffer.Text,
|
||||
Role = MessageRoles.Application.ToString(),
|
||||
}, cancellationToken);
|
||||
|
||||
messageBuffer.Text = string.Empty;
|
||||
}
|
||||
|
||||
dataTypeHolder += data;
|
||||
|
Loading…
Reference in New Issue
Block a user