From 5bbc49d609e7d9a914fcc17a8769fdecce6b5759 Mon Sep 17 00:00:00 2001 From: Patrick Marlow Date: Wed, 18 Oct 2023 19:51:08 -0500 Subject: [PATCH] feat: add new match_type for LLM --- src/dfcx_scrapi/core/conversation.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/dfcx_scrapi/core/conversation.py b/src/dfcx_scrapi/core/conversation.py index 5e8a9da1..ce354e7b 100644 --- a/src/dfcx_scrapi/core/conversation.py +++ b/src/dfcx_scrapi/core/conversation.py @@ -132,7 +132,8 @@ def _get_match_type_from_map(match_type: int): 4: "NO_MATCH", 5: "NO_INPUT", 6: "EVENT", - 8: "KNOWLEDGE_CONNECTOR" + 8: "KNOWLEDGE_CONNECTOR", + 9: "LLM" } return match_type_map[match_type]