From c20dcf788211796d23ed630a0f7259ac02ef6781 Mon Sep 17 00:00:00 2001 From: nicain Date: Wed, 6 Jul 2022 16:13:31 -0700 Subject: [PATCH] docs: Update region_tag: dialogflow_detect_intent_text --> dialogflow_es_detect_intent_text (#536) --- samples/snippets/detect_intent_texts.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/snippets/detect_intent_texts.py b/samples/snippets/detect_intent_texts.py index 673f8a694..01cc2b95d 100644 --- a/samples/snippets/detect_intent_texts.py +++ b/samples/snippets/detect_intent_texts.py @@ -30,7 +30,7 @@ import uuid -# [START dialogflow_detect_intent_text] +# [START dialogflow_es_detect_intent_text] def detect_intent_texts(project_id, session_id, texts, language_code): """Returns the result of detect intent with texts as inputs. @@ -63,7 +63,7 @@ def detect_intent_texts(project_id, session_id, texts, language_code): print("Fulfillment text: {}\n".format(response.query_result.fulfillment_text)) -# [END dialogflow_detect_intent_text] +# [END dialogflow_es_detect_intent_text] if __name__ == "__main__":