Skip to content

Commit 3010f0b

Browse files
fix tool dependecies installation
1 parent 1a6952f commit 3010f0b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

agentstack/generation/tool_generation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def add_tool(name: str, agents: Optional[list[str]] = []):
1919
log.notify(f'Tool {name} is already installed')
2020
else: # handle install
2121
if tool.dependencies:
22-
packaging.install(' '.join(tool.dependencies))
22+
packaging.install(tool.dependencies)
2323

2424
if tool.env: # add environment variables which don't exist
2525
with EnvFile() as env:

0 commit comments

Comments
 (0)