using ShoppingAssistantApi.Application.IServices; using ShoppingAssistantApi.Application.Models.OpenAi; namespace ShoppingAssistantApi.Infrastructure.Services; public class OpenAiService : IOpenAiService { private readonly HttpClient _httpClient; public OpenAiService(HttpClient client) { _httpClient = client; } public Task GetChatCompletion(ChatCompletionRequest chat, CancellationToken cancellationToken) { throw new NotImplementedException(); } public IAsyncEnumerable GetChatCompletionStream(ChatCompletionRequest chat, CancellationToken cancellationToken) { throw new NotImplementedException(); } }