Dialogflow 컨텍스트는 자연어 컨텍스트와 비슷합니다.
누가 여러분에게 '그건 오렌지입니다'라고 말할 때 무엇을 가리키는 것인지 알려면 컨텍스트가 필요합니다.
마찬가지로 Dialogflow가 이러한 최종 사용자 표현을 처리하려면 인텐트를 정확하게 일치시키기 위해 컨텍스트가 제공되어야 합니다.
컨텍스트를 사용하여 대화의 흐름을 제어할 수 있습니다.
문자열 이름으로 식별되는 입력 및 출력 컨텍스트를 설정하여 인텐트의 컨텍스트를 구성할 수 있습니다.
인텐트가 일치하면 해당 인텐트에 대해 구성된 출력 컨텍스트가 활성화됩니다.
활성화된 컨텍스트가 있으면 Dialogflow에서는 현재 활성화된 컨텍스트에 해당하는 입력 컨텍스트로 구성된 인텐트를 일치시킬 가능성이 높습니다.
다음 다이어그램은 금융 에이전트에 컨텍스트를 사용하는 예시를 보여줍니다.
최종 사용자가 당좌 예금 계좌에 대한 정보를 요청합니다.
Dialogflow는 이 최종 사용자 표현을 CheckingInfo 인텐트와 일치시킵니다.
이 인텐트에 checking 출력 컨텍스트가 있으므로 이 컨텍스트가 활성화됩니다.
에이전트가 최종 사용자에게 당좌 예금 계좌에 대해 필요한 정보 유형을 요청합니다.
최종 사용자가 '내 잔액'이라고 응답합니다.
Dialogflow는 이 최종 사용자 표현을 CheckingBalance 인텐트와 일치시킵니다.
이 인텐트에는 checking 입력 컨텍스트가 있으며, 이 컨텍스트가 활성화된 상태여야 이 인텐트와 일치시킬 수 있습니다.
유사한 SavingsBalance 인텐트가 있어 savings 컨텍스트가 활성화된 경우 동일한 최종 사용자 표현에 일치시킬 수 있습니다.
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["이해하기 어려움","hardToUnderstand","thumb-down"],["잘못된 정보 또는 샘플 코드","incorrectInformationOrSampleCode","thumb-down"],["필요한 정보/샘플이 없음","missingTheInformationSamplesINeed","thumb-down"],["번역 문제","translationIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2025-03-25(UTC)"],[[["Dialogflow's contexts are used to understand user expressions by providing necessary conversational context, similar to how humans understand natural language."],["Contexts control conversation flow by setting input and output contexts for intents, identified by string names."],["When an intent is matched, its output contexts become active, influencing which intents are more likely to be matched next."],["Dialogflow matches intents with specific input contexts only when those contexts are currently active, allowing for tailored responses."],["The banking agent example shows how the \"checking\" output context from the `CheckingInfo` intent enables the `CheckingBalance` intent to be matched later when a user asks for their balance."]]],[]]