This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/go_modules/sdks/google.golang.org/grpc-1.69.0
in repository https://gitbox.apache.org/repos/asf/beam.git


 discard 17212ed3b87 Bump google.golang.org/grpc from 1.67.2 to 1.69.0 in /sdks
     add c5a5be5e14e Rag chunking embedding (#33364)
     add d34409e27c4 Bump google.golang.org/api from 0.211.0 to 0.212.0 in 
/sdks (#33398)
     add 8b5c6f91fa1 Bump google.golang.org/grpc from 1.67.2 to 1.69.0 in /sdks

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (17212ed3b87)
            \
             N -- N -- N   
refs/heads/dependabot/go_modules/sdks/google.golang.org/grpc-1.69.0 
(8b5c6f91fa1)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 sdks/go.mod                                        |   6 +-
 sdks/go.sum                                        |  12 +-
 sdks/python/apache_beam/ml/rag/__init__.py         |  25 +++
 .../python/apache_beam/ml/rag/chunking/__init__.py |  21 ++
 sdks/python/apache_beam/ml/rag/chunking/base.py    |  92 +++++++++
 .../apache_beam/ml/rag/chunking/base_test.py       | 139 +++++++++++++
 .../apache_beam/ml/rag/chunking/langchain.py       | 120 ++++++++++++
 .../apache_beam/ml/rag/chunking/langchain_test.py  | 217 +++++++++++++++++++++
 .../apache_beam/ml/rag/embeddings/__init__.py      |  20 ++
 sdks/python/apache_beam/ml/rag/embeddings/base.py  |  55 ++++++
 .../apache_beam/ml/rag/embeddings/base_test.py     |  93 +++++++++
 .../apache_beam/ml/rag/embeddings/huggingface.py   |  74 +++++++
 .../ml/rag/embeddings/huggingface_test.py          | 108 ++++++++++
 sdks/python/apache_beam/ml/rag/types.py            |  73 +++++++
 sdks/python/apache_beam/ml/transforms/base.py      | 181 ++++++++++-------
 sdks/python/apache_beam/ml/transforms/base_test.py | 103 +++++++---
 .../ml/transforms/embeddings/huggingface.py        |   4 +-
 17 files changed, 1234 insertions(+), 109 deletions(-)
 create mode 100644 sdks/python/apache_beam/ml/rag/__init__.py
 create mode 100644 sdks/python/apache_beam/ml/rag/chunking/__init__.py
 create mode 100644 sdks/python/apache_beam/ml/rag/chunking/base.py
 create mode 100644 sdks/python/apache_beam/ml/rag/chunking/base_test.py
 create mode 100644 sdks/python/apache_beam/ml/rag/chunking/langchain.py
 create mode 100644 sdks/python/apache_beam/ml/rag/chunking/langchain_test.py
 create mode 100644 sdks/python/apache_beam/ml/rag/embeddings/__init__.py
 create mode 100644 sdks/python/apache_beam/ml/rag/embeddings/base.py
 create mode 100644 sdks/python/apache_beam/ml/rag/embeddings/base_test.py
 create mode 100644 sdks/python/apache_beam/ml/rag/embeddings/huggingface.py
 create mode 100644 
sdks/python/apache_beam/ml/rag/embeddings/huggingface_test.py
 create mode 100644 sdks/python/apache_beam/ml/rag/types.py

Reply via email to