8000 Adding file headers · ericmicrofocus/botbuilder-python@e683d2c · GitHub
[go: up one dir, main page]

Skip to content

Commit e683d2c

Browse files
committed
Adding file headers
1 parent ef3a09e commit e683d2c

7 files changed

+20
-2
lines changed

libraries/botbuilder-ai/botbuilder/ai/luis/luis_prediction_options.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33

44
from botbuilder.core import BotTelemetryClient, NullTelemetryClient
55

6+
# Copyright (c) Microsoft Corporation. All rights reserved.
7+
# Licensed under the MIT License.
68

79
class LuisPredictionOptions:
810
"""

libraries/botbuilder-ai/botbuilder/ai/luis/luis_recognizer_internal.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation. All rights reserved.
2+
# Licensed under the MIT License.
3+
14
from abc import ABC, abstractmethod
25
from botbuilder.core import TurnContext
36
from .luis_application import LuisApplication

libraries/botbuilder-ai/botbuilder/ai/luis/luis_recognizer_options.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
from botbuilder.core import BotTelemetryClient, NullTelemetryClient
1+
# Copyright (c) Microsoft Corporation. All rights reserved.
2+
# Licensed under the MIT License.
23

4+
from botbuilder.core import BotTelemetryClient, NullTelemetryClient
35

46
class LuisRecognizerOptions:
57
def __init__(

libraries/botbuilder-ai/botbuilder/ai/luis/luis_recognizer_options_v2.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1+
# Copyright (c) Microsoft Corporation. All rights reserved.
2+
# Licensed under the MIT License.
3+
14
from botbuilder.core import BotTelemetryClient, NullTelemetryClient
25
from .luis_recognizer_options import LuisRecognizerOptions
36

4-
57
class LuisRecognizerOptionsV2(LuisRecognizerOptions):
68
def __init__(
79
self,

libraries/botbuilder-ai/botbuilder/ai/luis/luis_recognizer_options_v3.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation. All rights reserved.
2+
# Licensed under the MIT License.
3+
14
from typing import List
25

36
from botbuilder.core import BotTelemetryClient, NullTelemetryClient

libraries/botbuilder-ai/botbuilder/ai/luis/luis_recognizer_v2.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation. All rights reserved.
2+
# Licensed under the MIT License.
3+
14
from typing import Dict
25
from azure.cognitiveservices.language.luis.runtime import LUISRuntimeClient
36
from azure.cognitiveservices.language.luis.runtime.models import LuisResult

libraries/botbuilder-ai/botbuilder/ai/luis/luis_recognizer_v3.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation. All rights reserved.
2+
# Licensed under the MIT License.
3+
14
import re
25
from typing import Dict
36

0 commit comments

Comments
 (0)
0