refactor(deps): migrate langchain-community from 0.2.10 to 0.4.1#213
Open
s0wa48 wants to merge 2 commits intoPolymarket:mainfrom
Open
refactor(deps): migrate langchain-community from 0.2.10 to 0.4.1#213s0wa48 wants to merge 2 commits intoPolymarket:mainfrom
s0wa48 wants to merge 2 commits intoPolymarket:mainfrom
Conversation
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Author
|
Reverted |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Changes
Dependency version bump
langchain-communityfrom0.2.10to0.4.1inrequirements.txtBreaking change: Chroma vectorstore import moved
langchain-community0.3+, theChromavectorstore was removed fromlangchain_community.vectorstores.chromaand fully migrated to the standalonelangchain-chromapackage.agents/connectors/chroma.pyto importChromafromlangchain_chromainstead of the deprecatedlangchain_community.vectorstores.chroma.langchain-chromapackage (langchain-chroma==0.1.2) was already present inrequirements.txt, so no additional dependency changes are required.Migration details
from langchain_community.vectorstores.chroma import Chromafrom langchain_chroma import ChromaChroma.from_documents(...),Chroma(persist_directory=..., embedding_function=...),.similarity_search_with_score(...)) remain compatible — the API surface oflangchain_chroma.Chromais identical to the old community version.This PR was auto-generated by Gittensor upgrade bot using Claude AI
Note
Low Risk
Low risk import-only change, but it can break runtime if
langchain_chromaisn’t installed or differs from the previouslangchain_communityimplementation.Overview
Updates
PolymarketRAGto importChromafrom the standalonelangchain_chromapackage instead oflangchain_community.vectorstores.chroma, aligning with newer LangChain packaging.Written by Cursor Bugbot for commit 969564f. This will update automatically on new commits. Configure here.