-
-
Save KyMidd/70ea0f18f1d32dc1f037fec23ecb4897 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Reranking knowledge base results | |
| def rerank_text(flat_conversation, kb_responses, bedrock_client): | |
| # Data looks like this: | |
| # [ | |
| # { | |
| # "text": "text", | |
| # "url": "url", | |
| # }, | |
| # { | |
| # "text": "text", | |
| # "url": "url", | |
| # } | |
| # ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment