Try your search with a different keyword or use * as a wildcard.
using Microsoft.AspNetCore.Mvc;
using Nop.Core.Domain.ArtificialIntelligence;
using Nop.Web.Areas.Admin.Models.Common;
using Nop.Web.Framework.Components;
namespace Nop.Web.Areas.Admin.Components;
///
/// Represents view component to use artificial intelligence service to generate product's full description
///
public partial class FullDescriptionGeneratorViewComponent : NopViewComponent
{
#region Filds
protected readonly ArtificialIntelligenceSettings _artificialIntelligenceSettings;
#endregion
#region Ctor
public FullDescriptionGeneratorViewComponent(ArtificialIntelligenceSettings artificialIntelligenceSettings)
{
_artificialIntelligenceSettings = artificialIntelligenceSettings;
}
#endregion
#region Methods
public IViewComponentResult Invoke(FullDescriptionGeneratorModel model)
{
if (!_artificialIntelligenceSettings.Enabled)
return Content(string.Empty);
return View(model);
}
#endregion
}