Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

ArtificialIntelligenceProviderType.cs

namespace Nop.Core.Domain.ArtificialIntelligence;

/// <summary>
/// Represents the artificial intelligence provider enumeration
/// </summary>
public enum ArtificialIntelligenceProviderType
{
    /// <summary>
    /// Gemini
    /// </summary>
    Gemini,
    /// <summary>
    /// ChatGPT (OpenAI)
    /// </summary>
    ChatGpt,
    /// <summary>
    /// DeepSeek
    /// </summary>
    DeepSeek
}