[Data][docs] Update the doc's minimum version to support build_processor#61757
Conversation
94d4f09 to
392c8d4
Compare
There was a problem hiding this comment.
Code Review
This pull request updates the minimum required version of ray in the documentation for working with LLMs. The change from >=2.49.1 to >=2.53.0 correctly aligns the installation command with the build_processor function used in the example code, which was introduced in version 2.53.0. This resolves the ImportError described in the pull request. The change is accurate and I have no further comments.
|
This pull request has been automatically marked as stale because it has not had You can always ask for help on our discussion forum or Ray's public slack channel. If you'd like to keep this open, just leave any comment, and the stale label will be removed. |
|
@goutamvenkat-anyscale @bveeramani This is a very minor fix. Could you please take a quick look when you have a moment? Thanks! |
Signed-off-by: dancingactor <s990346@gmail.com>
392c8d4 to
61cfae9
Compare
|
Hey @dancingactor , thanks for the PR! I actually don't own this code. @jeffreyjeffreywang could you take a look? |
jeffreywang88
left a comment
There was a problem hiding this comment.
Great find, thanks for the fix!
|
@bveeramani Sorry for the wrong tag! Thanks for helping! @jeffreywang-anyscale Thanks for your review! |
|
@jeffreywang-anyscale Could you please help merge this PR, thanks! |
…sor (ray-project#61757) Signed-off-by: dancingactor <s990346@gmail.com>
Description
Update the minimum version in the documentation's installation command to support the
build_processorfunction in the below example in the doc.build_processorwas calledbuild_llm_processorbefore2.53.0Change
pip install -U "ray[data, llm]>=2.49.1"->pip install -U "ray[data, llm]>=2.53.0"Related issues
Relates to #58484
Additional information
Before the fix