Skip to content

Commit

Permalink
Merge pull request #146 from GoogleCloudPlatform/feat/llm_match_type
Browse files Browse the repository at this point in the history
feat: add new match_type for LLM
  • Loading branch information
kmaphoenix authored Oct 19, 2023
2 parents 4fa35d9 + 5bbc49d commit d7f0d39
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/dfcx_scrapi/core/conversation.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit d7f0d39

Please sign in to comment.