/ src / settings-ui / Settings.UI.Library / AIServiceType.cs
AIServiceType.cs
 1  // Copyright (c) Microsoft Corporation
 2  // The Microsoft Corporation licenses this file to you under the MIT license.
 3  // See the LICENSE file in the project root for more information.
 4  
 5  namespace Microsoft.PowerToys.Settings.UI.Library
 6  {
 7      /// <summary>
 8      /// Supported AI service types for PowerToys AI experiences.
 9      /// </summary>
10      public enum AIServiceType
11      {
12          Unknown = 0,
13          OpenAI,
14          AzureOpenAI,
15          Onnx,
16          ML,
17          FoundryLocal,
18          Mistral,
19          Google,
20          AzureAIInference,
21          Ollama,
22      }
23  }