-
Notifications
You must be signed in to change notification settings - Fork 0
built- evaluation agent #4
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
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -33,4 +33,4 @@ Thumbs.db | |
|
|
||
| # Model cache (if downloading models) | ||
| .cache/ | ||
| models/ | ||
|
|
||
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
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
Oops, something went wrong.
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.
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.
🧩 Analysis chain
🏁 Script executed:
Repository: AFAskar/Governance-Agent
Length of output: 909
🌐 Web query:
LangChain ecosystem compatibility langchain-core langchain-groq langgraph 0.3.0 0.2.0 breaking changes💡 Result:
Python (LangChain / LangChain Core) v0.2 → v0.3
langchain/langchain-core0.3.x: internal move to Pydantic v2 (Pydantic v1 no longer supported) and Python 3.8 dropped. [1][2]Python LangGraph v0.2.0 (breaking changes)
LangGraph 0.2.0 introduced multiple breaking changes mostly around checkpointing and stream output:
langgraph-checkpoint-*) and re-export imports removed (import paths changed). [3]thread_ts/parent_tsrenamed tocheckpoint_id/parent_checkpoint_id. [3].from_conn_stringbecame a context manager. [3]Python LangGraph v0.3.0 (breaking changes)
LangGraph 0.3.0 breaking changes:
langgraph.prebuiltwas moved into a separate package:langgraph-prebuilt(you mustpip install langgraph-prebuiltto keep usingfrom langgraph.prebuilt import ...). [4]messages_modifierparam forcreate_react_agent(usepromptinstead). [4]langgraph.prebuilt.tool_executor(useToolNode). [4]Compatibility guidance (the practical “what versions work together”)
langchain-core0.3.x, the LangChain migration docs specifically recommend staying on LangGraph>=0.2.20,<0.3(i.e., LangGraph 0.2.x), and note it works with either 0.2 or 0.3 base LangChain packages. [5]langgraph-prebuilt). [4]LangGraph.js note (because your query mentions 0.3.0 / 0.2.0)
For LangGraph.js, the project’s “Over Time” page lists v0.2.0 → v0.3.0 breaking changes like interrupt propagation changes and stricter
.stream()typing; and separately notes that upgrading to v0.2.0 required explicitly installing@langchain/core. [6]Sources:
[1] https://blog.langchain.com/announcing-langchain-v0-3/
[2] https://python.langchain.com/docs/versions/v0_3/
[3] https://newreleases.io/project/github/langchain-ai/langgraph/release/0.2.0
[4] https://newreleases.io/project/github/langchain-ai/langgraph/release/0.3.0
[5] https://python.langchain.com/docs/versions/v0_3/
[6] https://langchain-ai.lang.chat/langgraphjs/versions/
Tighten version constraints for LangChain ecosystem compatibility and add Pydantic v2 as explicit dependency.
The specified versions have documented incompatibilities.
langchain-core>=0.3.0requires Pydantic v2 (v1 no longer supported) but Pydantic is not listed as a dependency. Additionally,langgraph>=0.2.0is too permissive—versions 0.2.0 and 0.3.0 both introduce breaking changes, and the LangChain migration docs recommend staying onlanggraph>=0.2.20,<0.3when usinglangchain-core>=0.3.0to avoid thelanggraph-prebuiltsplit and other breaking changes in 0.3.0.Recommended changes:
"pydantic>=2.0.0"as explicit dependency"langgraph>=0.2.0"to"langgraph>=0.2.20,<0.3.0"to prevent compatibility issues🤖 Prompt for AI Agents