- Replace ShellMiddleware with LocalShellBackend
- Update AgentMemoryMiddleware to MemoryMiddleware with new signature
- Update CustomSkillsMiddleware to use new SkillsMiddleware signature
- Add LocalContextMiddleware for local context
- Update CompositeBackend to use routing
- Update dependencies: langgraph-checkpoint-postgres to 3.0.4
Breaking Changes:
- agent/deep_assistant.py: Major refactoring to adapt to new deepagents API
- pyproject.toml: Version bump
- deepagents: 0.2.8 -> 0.4.3
- deepagents-cli: 0.0.11 -> 0.0.25
- langgraph-checkpoint-postgres: 2.0.25 -> 3.0.4 (for compatibility with langgraph-checkpoint 3.x)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
56 lines
1.3 KiB
TOML
56 lines
1.3 KiB
TOML
[project]
|
|
name = "catalog-agent"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = [
|
|
{name = "朱潮",email = "zhuchaowe@users.noreply.github.com"}
|
|
]
|
|
readme = "README.md"
|
|
requires-python = ">=3.12,<4.0"
|
|
dependencies = [
|
|
"fastapi==0.116.1",
|
|
"uvicorn==0.35.0",
|
|
"requests==2.32.5",
|
|
"pydantic==2.10.5",
|
|
"python-dateutil==2.8.2",
|
|
"torch==2.2.0",
|
|
"transformers",
|
|
"sentence-transformers",
|
|
"numpy<2",
|
|
"aiohttp",
|
|
"aiofiles",
|
|
"huey (>=2.5.3,<3.0.0)",
|
|
"pandas>=1.5.0",
|
|
"openpyxl>=3.0.0",
|
|
"xlrd>=2.0.0",
|
|
"chardet>=5.0.0",
|
|
"psutil (>=7.1.3,<8.0.0)",
|
|
"uvloop (>=0.22.1,<0.23.0)",
|
|
"deepagents (>=0.4.3,<0.5.0)",
|
|
"langchain-mcp-adapters (>=0.2.1,<0.3.0)",
|
|
"langchain-openai (>=1.1.1,<2.0.0)",
|
|
"cachetools (>=6.2.4,<7.0.0)",
|
|
"langgraph-checkpoint-postgres (>=3.0.0,<4.0.0)",
|
|
"deepagents-cli (>=0.0.25,<0.0.26)",
|
|
"mem0ai (>=0.1.50,<0.3.0)",
|
|
"psycopg2-binary (>=2.9.11,<3.0.0)",
|
|
"json-repair (>=0.29.0,<0.30.0)",
|
|
"tiktoken (>=0.5.0,<1.0.0)",
|
|
]
|
|
|
|
[tool.poetry.requires-plugins]
|
|
poetry-plugin-export = ">=1.8"
|
|
|
|
[tool.poetry]
|
|
package-mode = false
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest (>=9.0.2,<10.0.0)"
|
|
]
|