-
Notifications
You must be signed in to change notification settings - Fork 49
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
[FEATURE] AWS Personalize Plugin integration query #483
Comments
I think this is a feature request. You can always use the lower level HTTP API, https://github.com/opensearch-project/opensearch-net/blob/main/guides/json.md as a last resort, but if you have time maybe contribute these options to the higher level DSL? |
This should be relatively simple to implement if we treat So then it'd be something like: await client.SearchAsync(s => s
.Ext(e => e
.Add(
"personalize_request_parameters",
new
{
user_id = "USER_ID",
context = new { DEVICE = "mobile phone" }
}
)
)
); |
We are in need of a feature like this. We can use the low level client as a workaround but we prefer to use the high level client to take advantage of the extra features in there and for the type checks. |
I wanted to use aws personalize plugin to re-rank search results. In AWS documentation we see that we can achieve this through ext section in the request, But I couldn't find such an option in .net client.
Is there any way to use that plugin with .net client?
The text was updated successfully, but these errors were encountered: