langraph agent issues with cohere chat #974

Closed
opened 2026-02-20 17:42:35 -05:00 by yindo · 1 comment
Owner

Originally created by @pcsgithubid on GitHub (Sep 12, 2025).

Checked other resources

  • This is a bug, not a usage question. For questions, please use the LangChain Forum (https://forum.langchain.com/).
  • I added a clear and detailed title that summarizes the issue.
  • I read what a minimal reproducible example is (https://stackoverflow.com/help/minimal-reproducible-example).
  • I included a self-contained, minimal example that demonstrates the issue INCLUDING all the relevant imports. The code run AS IS to reproduce the issue.

Example Code

server.py

# math_server.py
from mcp.server.fastmcp import FastMCP

mcp = FastMCP("Math")

@mcp.tool()
def add(a: int, b: int) -> int:
    """Add two numbers"""
    return a + b

@mcp.tool()
def multiply(a: int, b: int) -> int:
    """Multiply two numbers"""
    return a * b

if __name__ == "__main__":
    mcp.run(transport="stdio")

client.py

# Create server parameters for stdio connection
from mcp import ClientSession, StdioServerParameters
from mcp.client.stdio import stdio_client
import asyncio

from langchain_mcp_adapters.tools import load_mcp_tools
from langgraph.prebuilt import create_react_agent
from langchain_cohere import ChatCohere 

server_params = StdioServerParameters(
    command="python",
    # Make sure to update to the full absolute path to your math_server.py file
    args=["server.py"],
)

async def main():
    async with stdio_client(server_params) as (read, write):
        async with ClientSession(read, write) as session:
            # Initialize the connection
            await session.initialize()

            # Get tools
            tools = await load_mcp_tools(session)

            # Initialize Cohere LLM
            cohere_llm = ChatCohere(model="command-r-plus")

            # Create and run the agent
            agent = create_react_agent(cohere_llm, tools)
            agent_response = await agent.ainvoke({"messages": [{"role": "user", "content": "what's (3 + 5) x 12?"}]})
            print(agent_response)

if __name__ == "__main__":
    asyncio.run(main())

Error Message and Stack Trace (if applicable)

+-+---------------- 1 ----------------
    | Exception Group Traceback (most recent call last):
    |   File "/Users/a501881320/ai-workspace/mcp/mcp/.venv/lib/python3.12/site-packages/mcp/client/stdio/__init__.py", line 188, in stdio_client
    |     yield read_stream, write_stream
    |   File "/Users/a501881320/ai-workspace/mcp/mcp/client.py", line 18, in main
    |     async with ClientSession(read, write) as session:
    |   File "/Users/a501881320/ai-workspace/mcp/mcp/.venv/lib/python3.12/site-packages/mcp/shared/session.py", line 218, in __aexit__
    |     return await self._task_group.__aexit__(exc_type, exc_val, exc_tb)
    |            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |   File "/Users/a501881320/ai-workspace/mcp/mcp/.venv/lib/python3.12/site-packages/anyio/_backends/_asyncio.py", line 772, in __aexit__
    |     raise BaseExceptionGroup(
    | ExceptionGroup: unhandled errors in a TaskGroup (1 sub-exception)
    +-+---------------- 1 ----------------
      | Traceback (most recent call last):
      |   File "/Users/a501881320/ai-workspace/mcp/mcp/client.py", line 30, in main
      |     agent_response = await agent.ainvoke({"messages": [{"role": "user", "content": "what's (3 + 5) x 12?"}]})
      |                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      |   File "/Users/a501881320/ai-workspace/mcp/mcp/.venv/lib/python3.12/site-packages/langgraph/pregel/main.py", line 3112, in ainvoke
      |     async for chunk in self.astream(
      |   File "/Users/a501881320/ai-workspace/mcp/mcp/.venv/lib/python3.12/site-packages/langgraph/pregel/main.py", line 2939, in astream
      |     async for _ in runner.atick(
      |   File "/Users/a501881320/ai-workspace/mcp/mcp/.venv/lib/python3.12/site-packages/langgraph/pregel/_runner.py", line 295, in atick
      |     await arun_with_retry(
      |   File "/Users/a501881320/ai-workspace/mcp/mcp/.venv/lib/python3.12/site-packages/langgraph/pregel/_retry.py", line 137, in arun_with_retry
      |     return await task.proc.ainvoke(task.input, config)
      |            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      |   File "/Users/a501881320/ai-workspace/mcp/mcp/.venv/lib/python3.12/site-packages/langgraph/_internal/_runnable.py", line 706, in ainvoke
      |     input = await asyncio.create_task(
      |             ^^^^^^^^^^^^^^^^^^^^^^^^^^
      |   File "/Users/a501881320/ai-workspace/mcp/mcp/.venv/lib/python3.12/site-packages/langgraph/_internal/_runnable.py", line 465, in ainvoke
      |     ret = await asyncio.create_task(coro, context=context)
      |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      |   File "/Users/a501881320/ai-workspace/mcp/mcp/.venv/lib/python3.12/site-packages/langgraph/prebuilt/chat_agent_executor.py", line 655, in acall_model
      |     response = cast(AIMessage, await static_model.ainvoke(model_input, config))  # type: ignore[union-attr]
      |                                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      |   File "/Users/a501881320/ai-workspace/mcp/mcp/.venv/lib/python3.12/site-packages/langchain_core/runnables/base.py", line 3290, in ainvoke
      |     input_ = await coro_with_context(part(), context, create_task=True)
      |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      |   File "/Users/a501881320/ai-workspace/mcp/mcp/.venv/lib/python3.12/site-packages/langchain_core/runnables/base.py", line 5723, in ainvoke
      |     return await self.bound.ainvoke(
      |            ^^^^^^^^^^^^^^^^^^^^^^^^^
      |   File "/Users/a501881320/ai-workspace/mcp/mcp/.venv/lib/python3.12/site-packages/langchain_core/language_models/chat_models.py", line 417, in ainvoke
      |     llm_result = await self.agenerate_prompt(
      |                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      |   File "/Users/a501881320/ai-workspace/mcp/mcp/.venv/lib/python3.12/site-packages/langchain_core/language_models/chat_models.py", line 1034, in agenerate_prompt
      |     return await self.agenerate(
      |            ^^^^^^^^^^^^^^^^^^^^^
      |   File "/Users/a501881320/ai-workspace/mcp/mcp/.venv/lib/python3.12/site-packages/langchain_core/language_models/chat_models.py", line 992, in agenerate
      |     raise exceptions[0]
      |   File "/Users/a501881320/ai-workspace/mcp/mcp/.venv/lib/python3.12/site-packages/langchain_core/language_models/chat_models.py", line 1162, in _agenerate_with_cache
      |     result = await self._agenerate(
      |              ^^^^^^^^^^^^^^^^^^^^^^
      |   File "/Users/a501881320/ai-workspace/mcp/mcp/.venv/lib/python3.12/site-packages/langchain_cohere/chat_models.py", line 1200, in _agenerate
      |     for tool_call in response.tool_calls
      |                      ^^^^^^^^^^^^^^^^^^^
      |   File "/Users/a501881320/ai-workspace/mcp/mcp/.venv/lib/python3.12/site-packages/pydantic/main.py", line 991, in __getattr__
      |     raise AttributeError(f'{type(self).__name__!r} object has no attribute {item!r}')
      | AttributeError: 'V2ChatResponse' object has no attribute 'tool_calls'
      | During task with name 'agent' and id '1d7d7f57-5aed-521f-91cd-b966e9d84f62'

Description

The agent invoke action cohere with basic MCP tools errors out

System Info

System Information

OS: Darwin
OS Version: Darwin Kernel Version 24.6.0: Mon Jul 14 11:28:17 PDT 2025; root:xnu-11417.140.69~1/RELEASE_X86_64
Python Version: 3.12.3 (main, Apr 9 2024, 08:09:14) [Clang 15.0.0 (clang-1500.3.9.4)]

Package Information

langchain_core: 0.3.76
langchain: 0.3.27
langchain_community: 0.3.29
langsmith: 0.4.27
langchain_cohere: 0.4.5
langchain_google_vertexai: 2.0.28
langchain_mcp_adapters: 0.1.9
langchain_text_splitters: 0.3.11
langgraph_sdk: 0.2.6

Optional packages not installed

langserve

Other Dependencies

aiohttp<4.0.0,>=3.8.3: Installed. No version info available.
anthropic[vertexai]: Installed. No version info available.
async-timeout<5.0.0,>=4.0.0;: Installed. No version info available.
bottleneck: 1.6.0
cohere: 5.17.0
dataclasses-json<0.7,>=0.6.7: Installed. No version info available.
google-cloud-aiplatform: 1.112.0
google-cloud-storage: 2.19.0
httpx: 0.28.1
httpx-sse: 0.4.0
httpx-sse<1.0.0,>=0.4.0: Installed. No version info available.
httpx<1,>=0.23.0: Installed. No version info available.
httpx>=0.25.2: Installed. No version info available.
jsonpatch<2.0,>=1.33: Installed. No version info available.
langchain-anthropic;: Installed. No version info available.
langchain-aws;: Installed. No version info available.
langchain-azure-ai;: Installed. No version info available.
langchain-cohere;: Installed. No version info available.
langchain-community;: Installed. No version info available.
langchain-core<0.4,>=0.3.36: Installed. No version info available.
langchain-core<1.0.0,>=0.3.72: Installed. No version info available.
langchain-core<2.0.0,>=0.3.75: Installed. No version info available.
langchain-deepseek;: Installed. No version info available.
langchain-fireworks;: Installed. No version info available.
langchain-google-genai;: Installed. No version info available.
langchain-google-vertexai;: Installed. No version info available.
langchain-groq;: Installed. No version info available.
langchain-huggingface;: Installed. No version info available.
langchain-mistralai: Installed. No version info available.
langchain-mistralai;: Installed. No version info available.
langchain-ollama;: Installed. No version info available.
langchain-openai;: Installed. No version info available.
langchain-perplexity;: Installed. No version info available.
langchain-text-splitters<1.0.0,>=0.3.9: Installed. No version info available.
langchain-together;: Installed. No version info available.
langchain-xai;: Installed. No version info available.
langchain<2.0.0,>=0.3.27: Installed. No version info available.
langsmith-pyo3>=0.1.0rc2;: Installed. No version info available.
langsmith>=0.1.125: Installed. No version info available.
langsmith>=0.1.17: Installed. No version info available.
langsmith>=0.3.45: Installed. No version info available.
mcp>=1.9.2: Installed. No version info available.
numexpr: 2.12.1
numpy>=1.26.2;: Installed. No version info available.
numpy>=2.1.0;: Installed. No version info available.
openai-agents>=0.0.3;: Installed. No version info available.
opentelemetry-api>=1.30.0;: Installed. No version info available.
opentelemetry-exporter-otlp-proto-http>=1.30.0;: Installed. No version info available.
opentelemetry-sdk>=1.30.0;: Installed. No version info available.
orjson>=3.10.1: Installed. No version info available.
orjson>=3.9.14;: Installed. No version info available.
packaging>=23.2: Installed. No version info available.
pyarrow: 19.0.1
pydantic: 2.11.7
pydantic-settings<3.0.0,>=2.10.1: Installed. No version info available.
pydantic<3,>=1: Installed. No version info available.
pydantic<3.0.0,>=2.7.4: Installed. No version info available.
pydantic>=2.7.4: Installed. No version info available.
pytest>=7.0.0;: Installed. No version info available.
PyYAML>=5.3: Installed. No version info available.
requests-toolbelt>=1.0.0: Installed. No version info available.
requests<3,>=2: Installed. No version info available.
requests<3,>=2.32.5: Installed. No version info available.
requests>=2.0.0: Installed. No version info available.
rich>=13.9.4;: Installed. No version info available.
SQLAlchemy<3,>=1.4: Installed. No version info available.
tenacity!=8.4.0,<10,>=8.1.0: Installed. No version info available.
tenacity!=8.4.0,<10.0.0,>=8.1.0: Installed. No version info available.
types-pyyaml: 6.0.12.20250822
typing-extensions>=4.14.0: Installed. No version info available.
typing-extensions>=4.7: Installed. No version info available.
validators: 0.35.0
vcrpy>=7.0.0;: Installed. No version info available.
zstandard>=0.23.0: Installed. No version info available.

Originally created by @pcsgithubid on GitHub (Sep 12, 2025). ### Checked other resources - [x] This is a bug, not a usage question. For questions, please use the LangChain Forum (https://forum.langchain.com/). - [x] I added a clear and detailed title that summarizes the issue. - [x] I read what a minimal reproducible example is (https://stackoverflow.com/help/minimal-reproducible-example). - [x] I included a self-contained, minimal example that demonstrates the issue INCLUDING all the relevant imports. The code run AS IS to reproduce the issue. ### Example Code ```python server.py # math_server.py from mcp.server.fastmcp import FastMCP mcp = FastMCP("Math") @mcp.tool() def add(a: int, b: int) -> int: """Add two numbers""" return a + b @mcp.tool() def multiply(a: int, b: int) -> int: """Multiply two numbers""" return a * b if __name__ == "__main__": mcp.run(transport="stdio") client.py # Create server parameters for stdio connection from mcp import ClientSession, StdioServerParameters from mcp.client.stdio import stdio_client import asyncio from langchain_mcp_adapters.tools import load_mcp_tools from langgraph.prebuilt import create_react_agent from langchain_cohere import ChatCohere server_params = StdioServerParameters( command="python", # Make sure to update to the full absolute path to your math_server.py file args=["server.py"], ) async def main(): async with stdio_client(server_params) as (read, write): async with ClientSession(read, write) as session: # Initialize the connection await session.initialize() # Get tools tools = await load_mcp_tools(session) # Initialize Cohere LLM cohere_llm = ChatCohere(model="command-r-plus") # Create and run the agent agent = create_react_agent(cohere_llm, tools) agent_response = await agent.ainvoke({"messages": [{"role": "user", "content": "what's (3 + 5) x 12?"}]}) print(agent_response) if __name__ == "__main__": asyncio.run(main()) ``` ### Error Message and Stack Trace (if applicable) ```shell +-+---------------- 1 ---------------- | Exception Group Traceback (most recent call last): | File "/Users/a501881320/ai-workspace/mcp/mcp/.venv/lib/python3.12/site-packages/mcp/client/stdio/__init__.py", line 188, in stdio_client | yield read_stream, write_stream | File "/Users/a501881320/ai-workspace/mcp/mcp/client.py", line 18, in main | async with ClientSession(read, write) as session: | File "/Users/a501881320/ai-workspace/mcp/mcp/.venv/lib/python3.12/site-packages/mcp/shared/session.py", line 218, in __aexit__ | return await self._task_group.__aexit__(exc_type, exc_val, exc_tb) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | File "/Users/a501881320/ai-workspace/mcp/mcp/.venv/lib/python3.12/site-packages/anyio/_backends/_asyncio.py", line 772, in __aexit__ | raise BaseExceptionGroup( | ExceptionGroup: unhandled errors in a TaskGroup (1 sub-exception) +-+---------------- 1 ---------------- | Traceback (most recent call last): | File "/Users/a501881320/ai-workspace/mcp/mcp/client.py", line 30, in main | agent_response = await agent.ainvoke({"messages": [{"role": "user", "content": "what's (3 + 5) x 12?"}]}) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | File "/Users/a501881320/ai-workspace/mcp/mcp/.venv/lib/python3.12/site-packages/langgraph/pregel/main.py", line 3112, in ainvoke | async for chunk in self.astream( | File "/Users/a501881320/ai-workspace/mcp/mcp/.venv/lib/python3.12/site-packages/langgraph/pregel/main.py", line 2939, in astream | async for _ in runner.atick( | File "/Users/a501881320/ai-workspace/mcp/mcp/.venv/lib/python3.12/site-packages/langgraph/pregel/_runner.py", line 295, in atick | await arun_with_retry( | File "/Users/a501881320/ai-workspace/mcp/mcp/.venv/lib/python3.12/site-packages/langgraph/pregel/_retry.py", line 137, in arun_with_retry | return await task.proc.ainvoke(task.input, config) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | File "/Users/a501881320/ai-workspace/mcp/mcp/.venv/lib/python3.12/site-packages/langgraph/_internal/_runnable.py", line 706, in ainvoke | input = await asyncio.create_task( | ^^^^^^^^^^^^^^^^^^^^^^^^^^ | File "/Users/a501881320/ai-workspace/mcp/mcp/.venv/lib/python3.12/site-packages/langgraph/_internal/_runnable.py", line 465, in ainvoke | ret = await asyncio.create_task(coro, context=context) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | File "/Users/a501881320/ai-workspace/mcp/mcp/.venv/lib/python3.12/site-packages/langgraph/prebuilt/chat_agent_executor.py", line 655, in acall_model | response = cast(AIMessage, await static_model.ainvoke(model_input, config)) # type: ignore[union-attr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | File "/Users/a501881320/ai-workspace/mcp/mcp/.venv/lib/python3.12/site-packages/langchain_core/runnables/base.py", line 3290, in ainvoke | input_ = await coro_with_context(part(), context, create_task=True) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | File "/Users/a501881320/ai-workspace/mcp/mcp/.venv/lib/python3.12/site-packages/langchain_core/runnables/base.py", line 5723, in ainvoke | return await self.bound.ainvoke( | ^^^^^^^^^^^^^^^^^^^^^^^^^ | File "/Users/a501881320/ai-workspace/mcp/mcp/.venv/lib/python3.12/site-packages/langchain_core/language_models/chat_models.py", line 417, in ainvoke | llm_result = await self.agenerate_prompt( | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | File "/Users/a501881320/ai-workspace/mcp/mcp/.venv/lib/python3.12/site-packages/langchain_core/language_models/chat_models.py", line 1034, in agenerate_prompt | return await self.agenerate( | ^^^^^^^^^^^^^^^^^^^^^ | File "/Users/a501881320/ai-workspace/mcp/mcp/.venv/lib/python3.12/site-packages/langchain_core/language_models/chat_models.py", line 992, in agenerate | raise exceptions[0] | File "/Users/a501881320/ai-workspace/mcp/mcp/.venv/lib/python3.12/site-packages/langchain_core/language_models/chat_models.py", line 1162, in _agenerate_with_cache | result = await self._agenerate( | ^^^^^^^^^^^^^^^^^^^^^^ | File "/Users/a501881320/ai-workspace/mcp/mcp/.venv/lib/python3.12/site-packages/langchain_cohere/chat_models.py", line 1200, in _agenerate | for tool_call in response.tool_calls | ^^^^^^^^^^^^^^^^^^^ | File "/Users/a501881320/ai-workspace/mcp/mcp/.venv/lib/python3.12/site-packages/pydantic/main.py", line 991, in __getattr__ | raise AttributeError(f'{type(self).__name__!r} object has no attribute {item!r}') | AttributeError: 'V2ChatResponse' object has no attribute 'tool_calls' | During task with name 'agent' and id '1d7d7f57-5aed-521f-91cd-b966e9d84f62' ``` ### Description The agent invoke action cohere with basic MCP tools errors out ### System Info System Information ------------------ > OS: Darwin > OS Version: Darwin Kernel Version 24.6.0: Mon Jul 14 11:28:17 PDT 2025; root:xnu-11417.140.69~1/RELEASE_X86_64 > Python Version: 3.12.3 (main, Apr 9 2024, 08:09:14) [Clang 15.0.0 (clang-1500.3.9.4)] Package Information ------------------- > langchain_core: 0.3.76 > langchain: 0.3.27 > langchain_community: 0.3.29 > langsmith: 0.4.27 > langchain_cohere: 0.4.5 > langchain_google_vertexai: 2.0.28 > langchain_mcp_adapters: 0.1.9 > langchain_text_splitters: 0.3.11 > langgraph_sdk: 0.2.6 Optional packages not installed ------------------------------- > langserve Other Dependencies ------------------ > aiohttp<4.0.0,>=3.8.3: Installed. No version info available. > anthropic[vertexai]: Installed. No version info available. > async-timeout<5.0.0,>=4.0.0;: Installed. No version info available. > bottleneck: 1.6.0 > cohere: 5.17.0 > dataclasses-json<0.7,>=0.6.7: Installed. No version info available. > google-cloud-aiplatform: 1.112.0 > google-cloud-storage: 2.19.0 > httpx: 0.28.1 > httpx-sse: 0.4.0 > httpx-sse<1.0.0,>=0.4.0: Installed. No version info available. > httpx<1,>=0.23.0: Installed. No version info available. > httpx>=0.25.2: Installed. No version info available. > jsonpatch<2.0,>=1.33: Installed. No version info available. > langchain-anthropic;: Installed. No version info available. > langchain-aws;: Installed. No version info available. > langchain-azure-ai;: Installed. No version info available. > langchain-cohere;: Installed. No version info available. > langchain-community;: Installed. No version info available. > langchain-core<0.4,>=0.3.36: Installed. No version info available. > langchain-core<1.0.0,>=0.3.72: Installed. No version info available. > langchain-core<2.0.0,>=0.3.75: Installed. No version info available. > langchain-deepseek;: Installed. No version info available. > langchain-fireworks;: Installed. No version info available. > langchain-google-genai;: Installed. No version info available. > langchain-google-vertexai;: Installed. No version info available. > langchain-groq;: Installed. No version info available. > langchain-huggingface;: Installed. No version info available. > langchain-mistralai: Installed. No version info available. > langchain-mistralai;: Installed. No version info available. > langchain-ollama;: Installed. No version info available. > langchain-openai;: Installed. No version info available. > langchain-perplexity;: Installed. No version info available. > langchain-text-splitters<1.0.0,>=0.3.9: Installed. No version info available. > langchain-together;: Installed. No version info available. > langchain-xai;: Installed. No version info available. > langchain<2.0.0,>=0.3.27: Installed. No version info available. > langsmith-pyo3>=0.1.0rc2;: Installed. No version info available. > langsmith>=0.1.125: Installed. No version info available. > langsmith>=0.1.17: Installed. No version info available. > langsmith>=0.3.45: Installed. No version info available. > mcp>=1.9.2: Installed. No version info available. > numexpr: 2.12.1 > numpy>=1.26.2;: Installed. No version info available. > numpy>=2.1.0;: Installed. No version info available. > openai-agents>=0.0.3;: Installed. No version info available. > opentelemetry-api>=1.30.0;: Installed. No version info available. > opentelemetry-exporter-otlp-proto-http>=1.30.0;: Installed. No version info available. > opentelemetry-sdk>=1.30.0;: Installed. No version info available. > orjson>=3.10.1: Installed. No version info available. > orjson>=3.9.14;: Installed. No version info available. > packaging>=23.2: Installed. No version info available. > pyarrow: 19.0.1 > pydantic: 2.11.7 > pydantic-settings<3.0.0,>=2.10.1: Installed. No version info available. > pydantic<3,>=1: Installed. No version info available. > pydantic<3.0.0,>=2.7.4: Installed. No version info available. > pydantic>=2.7.4: Installed. No version info available. > pytest>=7.0.0;: Installed. No version info available. > PyYAML>=5.3: Installed. No version info available. > requests-toolbelt>=1.0.0: Installed. No version info available. > requests<3,>=2: Installed. No version info available. > requests<3,>=2.32.5: Installed. No version info available. > requests>=2.0.0: Installed. No version info available. > rich>=13.9.4;: Installed. No version info available. > SQLAlchemy<3,>=1.4: Installed. No version info available. > tenacity!=8.4.0,<10,>=8.1.0: Installed. No version info available. > tenacity!=8.4.0,<10.0.0,>=8.1.0: Installed. No version info available. > types-pyyaml: 6.0.12.20250822 > typing-extensions>=4.14.0: Installed. No version info available. > typing-extensions>=4.7: Installed. No version info available. > validators: 0.35.0 > vcrpy>=7.0.0;: Installed. No version info available. > zstandard>=0.23.0: Installed. No version info available.
yindo added the bugpending labels 2026-02-20 17:42:35 -05:00
yindo closed this issue 2026-02-20 17:42:35 -05:00
Author
Owner

@casparb commented on GitHub (Sep 12, 2025):

Fixed in langchain-ai/langchain-cohere#148. Look out for a new release

@casparb commented on GitHub (Sep 12, 2025): Fixed in langchain-ai/langchain-cohere#148. Look out for a new release
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/langgraph#974