From b93134d78cd84efe229a2e31870f60ed7b528d0a Mon Sep 17 00:00:00 2001 From: Heitor Carvalho Date: Tue, 20 May 2025 22:20:09 -0300 Subject: [PATCH] Update docs --- docs/concepts/cli.mdx | 4 ---- docs/enterprise/guides/deploy-crew.mdx | 5 +---- src/crewai/cli/command.py | 2 +- 3 files changed, 2 insertions(+), 9 deletions(-) diff --git a/docs/concepts/cli.mdx b/docs/concepts/cli.mdx index 198cfcd8b..a275f6542 100644 --- a/docs/concepts/cli.mdx +++ b/docs/concepts/cli.mdx @@ -184,10 +184,6 @@ def crew(self) -> Crew: Deploy the crew or flow to [CrewAI Enterprise](https://app.crewai.com). - **Authentication**: You need to be authenticated to deploy to CrewAI Enterprise. - ```shell Terminal - crewai signup - ``` - If you already have an account, you can login with: ```shell Terminal crewai login ``` diff --git a/docs/enterprise/guides/deploy-crew.mdx b/docs/enterprise/guides/deploy-crew.mdx index 710e11d8c..04918b03d 100644 --- a/docs/enterprise/guides/deploy-crew.mdx +++ b/docs/enterprise/guides/deploy-crew.mdx @@ -41,11 +41,8 @@ For a quick reference project, you can clone our example repository at [github.c First, you need to authenticate your CLI with the CrewAI Enterprise platform: ```bash - # If you already have a CrewAI Enterprise account + # If you already have a CrewAI Enterprise account, or want to create one to use the CLI: crewai login - - # If you're creating a new account - crewai signup ``` When you run either command, the CLI will: diff --git a/src/crewai/cli/command.py b/src/crewai/cli/command.py index b16de4986..3128b4daa 100644 --- a/src/crewai/cli/command.py +++ b/src/crewai/cli/command.py @@ -26,7 +26,7 @@ class PlusAPIMixin: "Please sign up/login to CrewAI Enterprise before using the CLI.", style="bold red", ) - console.print("Run 'crewai signup' to sign up/login.", style="bold green") + console.print("Run 'crewai login' to sign up/login.", style="bold green") raise SystemExit def _validate_response(self, response: requests.Response) -> None: