Add Support for AWS Bedrock (#1408)

### What problem does this PR solve?

#308 

### Type of change

- [x] New Feature (non-breaking change which adds functionality)

---------

Co-authored-by: KevinHuSh <kevinhu.sh@gmail.com>
This commit is contained in:
H
2024-07-08 09:37:34 +08:00
committed by GitHub
parent b3ebc66b13
commit 6144a109ab
8 changed files with 325 additions and 7 deletions

View File

@ -31,7 +31,8 @@ EmbeddingModel = {
"BaiChuan": BaiChuanEmbed,
"Jina": JinaEmbed,
"BAAI": DefaultEmbedding,
"Mistral": MistralEmbed
"Mistral": MistralEmbed,
"Bedrock": BedrockEmbed
}
@ -58,7 +59,8 @@ ChatModel = {
"VolcEngine": VolcEngineChat,
"BaiChuan": BaiChuanChat,
"MiniMax": MiniMaxChat,
"Mistral": MistralChat
"Mistral": MistralChat,
"Bedrock": BedrockChat
}