Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion agentlightning/tracer/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from agentlightning.types import ParallelWorkerBase

if TYPE_CHECKING:
from langchain.callbacks.base import BaseCallbackHandler # type: ignore
from langchain_core.callbacks.base import BaseCallbackHandler # type: ignore

logger = logging.getLogger(__name__)

Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ agent = [
"autogen-ext[openai]",
"mcp",
"openai-agents",
"langgraph",
"langchain[openai]",
"langgraph<1.0",
"langchain[openai]<1.0",
"langchain-community",

Copilot AI Oct 18, 2025

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The langchain-community package should also be pinned to <1.0 for consistency with other LangChain packages. LangChain 1.0 includes breaking changes across the ecosystem, and langchain-community is part of this ecosystem.

Suggested change
"langchain-community",
"langchain-community<1.0",

Copilot uses AI. Check for mistakes.
"langchain-text-splitters",
"langchain-text-splitters<1.0",
"sqlparse",
"nltk",
"uv",
Expand Down
Loading