Remove pickle5 package from E2BExecutor (#295)

This commit is contained in:
Albert Villanova del Moral 2025-01-21 17:18:39 +01:00 committed by GitHub
parent cfbd527438
commit 5f5aec3ec4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ class E2BExecutor:
# )
# print("Installation of agents package finished.")
self.logger = logger
additional_imports = additional_imports + ["pickle5", "smolagents"]
additional_imports = additional_imports + ["smolagents"]
if len(additional_imports) > 0:
execution = self.sbx.commands.run("pip install " + " ".join(additional_imports))
if execution.error: