File size: 562 Bytes
0827183
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.

from botbuilder.core import BotTelemetryClient, NullTelemetryClient


class LuisRecognizerOptions:
    def __init__(
        self,
        include_api_results: bool = None,
        telemetry_client: BotTelemetryClient = NullTelemetryClient(),
        log_personal_information: bool = False,
    ):
        self.include_api_results = include_api_results
        self.telemetry_client = telemetry_client
        self.log_personal_information = log_personal_information