-
Notifications
You must be signed in to change notification settings - Fork 138
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
Fixing MachineLearningNodeClient create connector, deploy model, register model group actions #1580
Conversation
@ylwu-amzn This PR, along with the following PRs need to be backported to the PRs : |
…ster model group actions Signed-off-by: Joshua Palis <[email protected]>
The backport to
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-feature/agent_framework_dev feature/agent_framework_dev
# Navigate to the new working tree
cd .worktrees/backport-feature/agent_framework_dev
# Create a new branch
git switch --create backport/backport-1580-to-feature/agent_framework_dev
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 882246c04daacc98eb9c72fbdcabcce497856423
# Push it to GitHub
git push --set-upstream origin backport/backport-1580-to-feature/agent_framework_dev
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-feature/agent_framework_dev Then, create a pull request where the |
…ster model group actions (#1580) Signed-off-by: Joshua Palis <[email protected]> (cherry picked from commit 882246c)
…ster model group actions (#1580) (#1584) Signed-off-by: Joshua Palis <[email protected]> (cherry picked from commit 882246c) Co-authored-by: Joshua Palis <[email protected]>
…ster model group actions (opensearch-project#1580) Signed-off-by: Joshua Palis <[email protected]> Signed-off-by: TrungBui59 <[email protected]>
…ster model group actions (opensearch-project#1580) Signed-off-by: Joshua Palis <[email protected]> Signed-off-by: TrungBui59 <[email protected]>
…ster model group actions (opensearch-project#1580) Signed-off-by: Joshua Palis <[email protected]>
Description
Following PR #1560, additional class casting issues have been observed for
create connector
,deploy model
,register model group
.This PR resolves those issues
Issues Resolved
Coming from opensearch-project/flow-framework#131
Continuation of #1553
Check List
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.