From 8af141e477a6e355ae615714013e9576bf9af83a Mon Sep 17 00:00:00 2001 From: Andres Javier Lopez Date: Wed, 22 Apr 2026 15:39:35 -0600 Subject: [PATCH 1/3] Update pytest dependency --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f45a860..077cea5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ python-dotenv = "^1.0.1" langchain-tavily = "^0.2.11" [tool.poetry.group.dev.dependencies] -pytest = "^7.3.1" +pytest = "^9.0.3" black = {extras = ["jupyter"], version = "^25.1.0"} flake8 = "^7.3.0" isort = "^6.0.1" From c40302753a36e01b575779caab9cb9364b71b3cc Mon Sep 17 00:00:00 2001 From: Andres Javier Lopez Date: Wed, 22 Apr 2026 15:41:24 -0600 Subject: [PATCH 2/3] Update langchain-openai --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 077cea5..a8db39c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ readme = "README.md" [tool.poetry.dependencies] python = "^3.12" langchain = ">=1.0,<2.0" -langchain-openai = "^0.3.3" +langchain-openai = "^1.1.16" langgraph = ">=1.0,<2.0" python-dotenv = "^1.0.1" langchain-tavily = "^0.2.11" From 466c5c33fdf56d3eb97e0693ac8d953245495ad8 Mon Sep 17 00:00:00 2001 From: Andres Javier Lopez Date: Wed, 22 Apr 2026 15:42:41 -0600 Subject: [PATCH 3/3] Update changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b4302fe..bc86509 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ # CHANGELOG ## NEXT +* Update dependencies * Replace deprecated `actions/create-release@v1` with `softprops/action-gh-release@v2` in the release workflow to avoid legacy Node runtime usage. * Update example notebooks to use `BuilderContext.create(...)` and `agent_factory` instead of deprecated `BaseAgentFactory`. * Add `ARCHITECTURE.md` for assistant_core internals.