-
Notifications
You must be signed in to change notification settings - Fork 271
Add comprehensive AWS Bedrock embedders guide #3426
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Add comprehensive AWS Bedrock embedders guide #3426
Conversation
… Bedrock embedding models including Titan, Nova, and Cohere - Include configuration examples for different Bedrock models - Add proper API key setup instructions with regional requirements - Include semantic search examples with hybrid search configuration - Update navigation to include the new Bedrock embedders guide
| } | ||
| } | ||
| } | ||
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@tbuatois I think "```" is missing, and because it's the delimiter of GitHub suggestion, I cannot add it myself
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And what's the difference between what I have, which is working perfectly with our Flickr demo? I would rather use mine as I know it works.
"bedrock": {
"source": "rest",
"apiKey": "ABSKQXXXXXX...",
"dimensions": 1024,
"binaryQuantized": true,
"url": "https://bedrock-runtime.eu-west-3.amazonaws.com/model/amazon.titan-embed-image-v1/invoke",
"indexingFragments": {
"image": {
"value": {
"inputImage": "{{doc.base64}}",
"embeddingConfig": {
"outputEmbeddingLength": 1024
}
}
}
},
"searchFragments": {
"text": {
"value": {
"inputText": "{{q}}",
"embeddingConfig": {
"outputEmbeddingLength": 1024
}
}
}
},
"request": "{{fragment}}",
"response": {
"embedding": "{{embedding}}"
},
"headers": {}
}
|
@Kerollmops I need your technical review on it! Muchas gracias! |
Kerollmops
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I prefer @qdequele to review the process for creating an API Key, but otherwise I think it's good. We still need to update the different settings config to the one I linked, though.
| } | ||
| } | ||
| } | ||
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And what's the difference between what I have, which is working perfectly with our Flickr demo? I would rather use mine as I know it works.
"bedrock": {
"source": "rest",
"apiKey": "ABSKQXXXXXX...",
"dimensions": 1024,
"binaryQuantized": true,
"url": "https://bedrock-runtime.eu-west-3.amazonaws.com/model/amazon.titan-embed-image-v1/invoke",
"indexingFragments": {
"image": {
"value": {
"inputImage": "{{doc.base64}}",
"embeddingConfig": {
"outputEmbeddingLength": 1024
}
}
}
},
"searchFragments": {
"text": {
"value": {
"inputText": "{{q}}",
"embeddingConfig": {
"outputEmbeddingLength": 1024
}
}
}
},
"request": "{{fragment}}",
"response": {
"embedding": "{{embedding}}"
},
"headers": {}
}
Pull Request
Related issue
No issue. This PR adds missing documentation for AWS Bedrock embedding models integration with Meilisearch.
What does this PR do?
This PR adds a comprehensive guide for using AWS Bedrock embedding models with Meilisearch, including:
guides/embedders/bedrock.mdx) covering:The guide provides developers with complete, working examples to integrate Meilisearch with AWS Bedrock's embedding models for semantic search capabilities.
PR checklist
Please check if your PR fulfills the following requirements: