Move docker code exec to autogen-ext (#3733)

* move docker code exec to autogen-ext

* fix test

* rename docker subpackage

* add missing renamed package

---------

Co-authored-by: Leonardo Pinheiro <lpinheiro@microsoft.com>
This commit is contained in:
Leonardo Pinheiro
2024-10-12 02:28:15 +10:00
committed by GitHub
parent e1e9d19cb4
commit c765a34cbf
16 changed files with 217 additions and 85 deletions

View File

@@ -22,6 +22,7 @@ dependencies = [
[project.optional-dependencies]
langchain-tools = ["langchain >= 0.3.1"]
azure-code-executor = ["azure-core"]
docker-code-executor = ["docker~=7.0"]
[tool.hatch.build.targets.wheel]
packages = ["src/autogen_ext"]
@@ -47,3 +48,8 @@ include = "../../shared_tasks.toml"
[tool.poe.tasks]
test = "pytest -n auto"
[tool.mypy]
[[tool.mypy.overrides]]
module = "docker.*"
ignore_missing_imports = true