opensearch-project / ml-commons

ml-commons provides a set of common machine learning algorithms, e.g. k-means, or linear regression, to help developers build ML related features within OpenSearch.
Apache License 2.0
99 stars 136 forks source link

adding blue print doc for cohere multi-modal model #3229

Closed dhrubo-os closed 2 days ago

dhrubo-os commented 3 days ago

Description

[ adding blue print doc for cohere multi-modal model]

Related Issues

Resolves #[Issue number to be closed when this PR is merged]

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.

mingshl commented 2 days ago

reran the bwc tests twice and still failing. can you look into it please?

dhrubo-os commented 2 days ago

reran the bwc tests twice and still failing. can you look into it please?

That's flaky. One BWC test is passing now. And this changes doesn't have any relation with the BWC test.

mingshl commented 2 days ago

approved, but please create issue for the flaky test to track them or once it's merged, we cannot track the log

opensearch-trigger-bot[bot] commented 2 days ago

The backport to feature/multi_tenancy failed:

The process '/usr/bin/git' failed with exit code 1

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/multi_tenancy feature/multi_tenancy
# Navigate to the new working tree
cd .worktrees/backport-feature/multi_tenancy
# Create a new branch
git switch --create backport/backport-3229-to-feature/multi_tenancy
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 de301b739b2bdc590cfbdb28682a0b53c5988cdb
# Push it to GitHub
git push --set-upstream origin backport/backport-3229-to-feature/multi_tenancy
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-feature/multi_tenancy

Then, create a pull request where the base branch is feature/multi_tenancy and the compare/head branch is backport/backport-3229-to-feature/multi_tenancy.