-
Notifications
You must be signed in to change notification settings - Fork 3
Update dependency langchain-experimental to >=0.4.1,<0.5 #2735
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -55,7 +55,7 @@ dependencies = [ | |
| "isodate>=0.7.2,<0.8", | ||
| "jedi>=0.19.0,<0.20", | ||
| "langchain>=0.3.11,<0.4", | ||
| "langchain-experimental>=0.3.4,<0.4", | ||
| "langchain-experimental>=0.4.1,<0.5", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bug: The Suggested FixIn Prompt for AI AgentThere was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bug: The Suggested FixIn Prompt for AI AgentThere was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bug: The upgrade of Suggested FixTo resolve the dependency conflict, the Prompt for AI AgentThere was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bug: The Suggested FixRegenerate the Prompt for AI Agent |
||
| "langchain-openai>=0.3.2,<0.4", | ||
| "litellm==1.83.10", | ||
| "llama-index>=0.14.0,<0.15", | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bug: The upgrade of
langchain-experimentalmay cause a runtime error inSemanticChunkerbecause this functionality is not covered by integration tests, only mocked.Severity: MEDIUM
Suggested Fix
Add an integration test that enables semantic chunking (
CONTENT_FILE_EMBEDDING_SEMANTIC_CHUNKING_ENABLED = True) and invokes the document chunking logic without mockingSemanticChunker. This will validate the compatibility of the customencoderwith the new library version at test time.Prompt for AI Agent