Add cai-replay

Signed-off-by: Víctor Mayoral Vilches <v.mayoralv@gmail.com>
This commit is contained in:
Víctor Mayoral Vilches 2025-05-09 17:03:48 +02:00
parent b7449403a8
commit 0c2cae2066
2 changed files with 4 additions and 1 deletions

View File

@ -81,10 +81,11 @@ requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/cai"]
packages = ["src/cai", "tools"]
[tool.hatch.build.targets.wheel.sources]
"src" = ""
"tools" = "tools"
[tool.hatch.build.targets.wheel.force-include]
"src/cai/prompts" = "cai/prompts"
@ -151,3 +152,4 @@ format-command = "ruff format --stdin-filename {filename}"
[project.scripts]
cai = "cai.cli:main"
cai-replay = "tools.replay:main"

1
tools/__init__.py Normal file
View File

@ -0,0 +1 @@
"""Tools package for cai framework."""