Source code for azure.cognitiveservices.knowledge.qnamaker.models.context_dto_py3

# 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.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------

from msrest.serialization import Model


[docs]class ContextDTO(Model): """Context associated with Qna. :param is_context_only: To mark if a prompt is relevant only with a previous question or not. true - Do not include this QnA as search result for queries without context false - ignores context and includes this QnA in search result :type is_context_only: bool :param prompts: List of prompts associated with the answer. :type prompts: list[~azure.cognitiveservices.knowledge.qnamaker.models.PromptDTO] """ _validation = { 'prompts': {'max_items': 20}, } _attribute_map = { 'is_context_only': {'key': 'isContextOnly', 'type': 'bool'}, 'prompts': {'key': 'prompts', 'type': '[PromptDTO]'}, } def __init__(self, *, is_context_only: bool=None, prompts=None, **kwargs) -> None: super(ContextDTO, self).__init__(**kwargs) self.is_context_only = is_context_only self.prompts = prompts