File size: 740 Bytes
0827183
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.

from enum import Enum


class LuisTelemetryConstants(str, Enum):
    """
    The IBotTelemetryClient event and property names that logged by default.
    """

    luis_result = "LuisResult"
    """Event name"""
    application_id_property = "applicationId"
    intent_property = "intent"
    intent_score_property = "intentScore"
    intent2_property = "intent2"
    intent_score2_property = "intentScore2"
    entities_property = "entities"
    question_property = "question"
    activity_id_property = "activityId"
    sentiment_label_property = "sentimentLabel"
    sentiment_score_property = "sentimentScore"
    from_id_property = "fromId"