Skip to content

Commit

Permalink
feat(assistant-v1): add more enums for Disambiguation settings
Browse files Browse the repository at this point in the history
  • Loading branch information
nan2iz committed Sep 8, 2021
1 parent c506219 commit 3508067
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,22 @@ public class SensitivityEnumValue
/// Constant HIGH for high
/// </summary>
public const string HIGH = "high";
/// <summary>
/// Constant MEDIUM_HIGH for medium_high
/// </summary>
public const string MEDIUM_HIGH = "medium_high";
/// <summary>
/// Constant MEDIUM for medium
/// </summary>
public const string MEDIUM = "medium";
/// <summary>
/// Constant MEDIUM_LOW for medium_low
/// </summary>
public const string MEDIUM_LOW = "medium_low";
/// <summary>
/// Constant LOW for low
/// </summary>
public const string LOW = "low";

}

Expand Down

0 comments on commit 3508067

Please sign in to comment.