From 873b1c51d6ff6551cbd905d709d3ee7c75761153 Mon Sep 17 00:00:00 2001 From: Eduardo Chiarotti Date: Wed, 9 Oct 2024 15:56:46 -0300 Subject: [PATCH] feat: adapt uv command to run the tool repo --- src/crewai/cli/tools/main.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/crewai/cli/tools/main.py b/src/crewai/cli/tools/main.py index 497a1bc4d..f1176c035 100644 --- a/src/crewai/cli/tools/main.py +++ b/src/crewai/cli/tools/main.py @@ -162,9 +162,7 @@ class ToolCommand(BaseCommand, PlusAPIMixin): add_repository_command = [ "uv", - "source", "add", - "--priority=explicit", repository_handle, repository["url"], ] @@ -202,7 +200,6 @@ class ToolCommand(BaseCommand, PlusAPIMixin): add_package_command = [ "uv", "add", - "--source", pypi_index_handle, tool_handle, ]