update import for tests so they will pass

This commit is contained in:
Nick Hollon
2026-04-28 12:17:54 -04:00
parent 5f36ae3131
commit e24a80be6c

View File

@@ -10,14 +10,13 @@ from langchain_core.tools import tool
from langgraph.stream import EventLog, StreamTransformer
from langchain.agents import create_agent
from langchain.tools import ToolRuntime # noqa: TC001
from tests.unit_tests.agents.model import FakeToolCallingModel
if TYPE_CHECKING:
from langgraph.prebuilt._tool_call_stream import ToolCallStream
from langgraph.stream._types import ProtocolEvent
from langchain.tools import ToolRuntime
@tool
def echo(text: str) -> str: