Spaces:
Build error
Build error
Validify-testbot-1
/
botbuilder-python
/libraries
/botbuilder-dialogs
/botbuilder
/dialogs
/choices
/__init__.py
| # coding=utf-8 | |
| # -------------------------------------------------------------------------- | |
| # Copyright (c) Microsoft Corporation. All rights reserved. | |
| # Licensed under the MIT License. See License.txt in the project root for | |
| # license information. | |
| # -------------------------------------------------------------------------- | |
| from .channel import Channel | |
| from .choice import Choice | |
| from .choice_factory_options import ChoiceFactoryOptions | |
| from .choice_factory import ChoiceFactory | |
| from .choice_recognizers import ChoiceRecognizers | |
| from .find import Find | |
| from .find_choices_options import FindChoicesOptions, FindValuesOptions | |
| from .found_choice import FoundChoice | |
| from .found_value import FoundValue | |
| from .list_style import ListStyle | |
| from .model_result import ModelResult | |
| from .sorted_value import SortedValue | |
| from .token import Token | |
| from .tokenizer import Tokenizer | |
| __all__ = [ | |
| "Channel", | |
| "Choice", | |
| "ChoiceFactory", | |
| "ChoiceFactoryOptions", | |
| "ChoiceRecognizers", | |
| "Find", | |
| "FindChoicesOptions", | |
| "FindValuesOptions", | |
| "FoundChoice", | |
| "ListStyle", | |
| "ModelResult", | |
| "SortedValue", | |
| "Token", | |
| "Tokenizer", | |
| ] | |