We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1a6952f + cb1a755 commit afe916bCopy full SHA for afe916b
1 file changed
agentstack/generation/tool_generation.py
@@ -19,7 +19,8 @@ def add_tool(name: str, agents: Optional[list[str]] = []):
19
log.notify(f'Tool {name} is already installed')
20
else: # handle install
21
if tool.dependencies:
22
- packaging.install(' '.join(tool.dependencies))
+ for dependency in tool.dependencies:
23
+ packaging.install(dependency)
24
25
if tool.env: # add environment variables which don't exist
26
with EnvFile() as env:
0 commit comments