8000 Merge branch 'master' into trboehre/httpclient-gov-credentials · Santhosh0505/botbuilder-python@da620e7 · GitHub
[go: up one dir, main page]

Skip to content

Commit da620e7

Browse files
authored
Merge branch 'master' into trboehre/httpclient-gov-credentials
2 parents 0038211 + 6d42337 commit da620e7

25 files changed

+1656
-673
lines changed
Lines changed: 41 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,41 @@
1-
# Copyright (c) Microsoft Corporation. All rights reserved.
2-
# Licensed under the MIT License.
3-
4-
from .qnamaker import QnAMaker
5-
from .qnamaker_endpoint import QnAMakerEndpoint
6-
from .qnamaker_options import QnAMakerOptions
7-
from .qnamaker_telemetry_client import QnAMakerTelemetryClient
8-
from .utils import (
9-
ActiveLearningUtils,
10-
GenerateAnswerUtils,
11-
HttpRequestUtils,
12-
QnATelemetryConstants,
13-
)
14-
15-
from .models import (
16-
FeedbackRecord,
17-
FeedbackRecords,
18-
Metadata,
19-
QnAMakerTraceInfo,
20-
QueryResult,
21-
QueryResults,
22-
)
23-
24-
__all__ = [
25-
"ActiveLearningUtils",
26-
"FeedbackRecord",
27-
"FeedbackRecords",
28-
"GenerateAnswerUtils",
29-
"HttpRequestUtils",
30-
"Metadata",
31-
"QueryResult",
32-
"QueryResults",
33-
"QnAMaker",
34-
"QnAMakerEndpoint",
35-
"QnAMakerOptions",
36-
"QnAMakerTelemetryClient",
37-
"QnAMakerTraceInfo",
38-
"QnATelemetryConstants",
39-
]
1+
# Copyright (c) Microsoft Corporation. All rights reserved.
2+
# Licensed under the MIT License.
3+
4+
from .qnamaker import QnAMaker
5+
from .qnamaker_endpoint import QnAMakerEndpoint
6+
from .qnamaker_options import QnAMakerOptions
7+
from .qnamaker_telemetry_client import QnAMakerTelemetryClient
8+
from .qna_dialog_response_options import QnADialogResponseOptions
9+
from .utils import (
10+
ActiveLearningUtils,
11+
GenerateAnswerUtils,
12+
HttpRequestUtils,
13+
QnATelemetryConstants,
14+
)
15+
16+
from .models import (
17+
FeedbackRecord,
18+
FeedbackRecords,
19+
Metadata,
20+
QnAMakerTraceInfo,
21+
QueryResult,
22+
QueryResults,
23+
)
24+
25+
__all__ = [
26+
"ActiveLearningUtils",
27+
"FeedbackRecord",
28+
"FeedbackRecords",
29+
"GenerateAnswerUtils",
30+
"HttpRequestUtils",
31+
"Metadata",
32+
"QueryResult",
33+
"QueryResults",
34+
"QnAMaker",
35+
"QnAMakerEndpoint",
36+
"QnAMakerOptions",
37+
"QnAMakerTelemetryClient",
38+
"QnAMakerTraceInfo",
39+
"QnATelemetryConstants",
40+
"QnADialogResponseOptions",
41+
]
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# coding=utf-8
2+
# --------------------------------------------------------------------------
3+
# Copyright (c) Microsoft Corporation. All rights reserved.
4+
# Licensed under the MIT License. See License.txt in the project root for
5+
# license information.
6+
# --------------------------------------------------------------------------
7+
8+
from .qnamaker_dialog import QnAMakerDialog
9+
from .qnamaker_dialog_options import QnAMakerDialogOptions
10+
11+
__all__ = [
12+
"QnAMakerDialogOptions",
13+
"QnAMakerDialog",
14+
]

0 commit comments

Comments
 (0)
0