vknet_vk/VkNet/Enums/StringEnums/AsrProcessModel.cs
2023-08-14 14:44:05 +03:00

22 lines
No EOL
637 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using Newtonsoft.Json;
using VkNet.Utils.JsonConverter;
namespace VkNet.Enums.StringEnums;
/// <summary>
/// Модель распознавания речи, которую нужно использовать
/// </summary>
[StringEnum]
[JsonConverter(typeof(TolerantStringEnumConverter))]
public enum AsrProcessModel
{
/// <summary>
/// Распознавание разборчивой речи, как в интервью или телешоу.
/// </summary>
Neutral,
/// <summary>
/// Распознавание речи со сленгом и ненормативной лексикой.
/// </summary>
Spontaneous
}