mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-10 00:28:31 +00:00
fix: remove crewai signup references, replaced by crewai login (#3213)
This commit is contained in:
@@ -84,8 +84,8 @@ filename = "seu_modelo.pkl"
|
|||||||
|
|
||||||
try:
|
try:
|
||||||
SuaCrew().crew().train(
|
SuaCrew().crew().train(
|
||||||
n_iterations=n_iterations,
|
n_iterations=n_iterations,
|
||||||
inputs=inputs,
|
inputs=inputs,
|
||||||
filename=filename
|
filename=filename
|
||||||
)
|
)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
@@ -103,7 +103,7 @@ crewai replay [OPTIONS]
|
|||||||
- `-t, --task_id TEXT`: Reexecuta o crew a partir deste task ID, incluindo todas as tarefas subsequentes
|
- `-t, --task_id TEXT`: Reexecuta o crew a partir deste task ID, incluindo todas as tarefas subsequentes
|
||||||
|
|
||||||
Exemplo:
|
Exemplo:
|
||||||
```shell Terminal
|
```shell Terminal
|
||||||
crewai replay -t task_123456
|
crewai replay -t task_123456
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -149,7 +149,7 @@ crewai test [OPTIONS]
|
|||||||
- `-m, --model TEXT`: Modelo LLM para executar os testes no Crew (padrão: "gpt-4o-mini")
|
- `-m, --model TEXT`: Modelo LLM para executar os testes no Crew (padrão: "gpt-4o-mini")
|
||||||
|
|
||||||
Exemplo:
|
Exemplo:
|
||||||
```shell Terminal
|
```shell Terminal
|
||||||
crewai test -n 5 -m gpt-3.5-turbo
|
crewai test -n 5 -m gpt-3.5-turbo
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -203,10 +203,7 @@ def crew(self) -> Crew:
|
|||||||
Implemente o crew ou flow no [CrewAI Enterprise](https://app.crewai.com).
|
Implemente o crew ou flow no [CrewAI Enterprise](https://app.crewai.com).
|
||||||
|
|
||||||
- **Autenticação**: Você precisa estar autenticado para implementar no CrewAI Enterprise.
|
- **Autenticação**: Você precisa estar autenticado para implementar no CrewAI Enterprise.
|
||||||
```shell Terminal
|
Você pode fazer login ou criar uma conta com:
|
||||||
crewai signup
|
|
||||||
```
|
|
||||||
Caso já tenha uma conta, você pode fazer login com:
|
|
||||||
```shell Terminal
|
```shell Terminal
|
||||||
crewai login
|
crewai login
|
||||||
```
|
```
|
||||||
@@ -253,7 +250,7 @@ Você deve estar autenticado no CrewAI Enterprise para usar estes comandos de ge
|
|||||||
- **Implantar o Crew**: Depois de autenticado, você pode implantar seu crew ou flow no CrewAI Enterprise.
|
- **Implantar o Crew**: Depois de autenticado, você pode implantar seu crew ou flow no CrewAI Enterprise.
|
||||||
```shell Terminal
|
```shell Terminal
|
||||||
crewai deploy push
|
crewai deploy push
|
||||||
```
|
```
|
||||||
- Inicia o processo de deployment na plataforma CrewAI Enterprise.
|
- Inicia o processo de deployment na plataforma CrewAI Enterprise.
|
||||||
- Após a iniciação bem-sucedida, será exibida a mensagem Deployment created successfully! juntamente com o Nome do Deployment e um Deployment ID (UUID) único.
|
- Após a iniciação bem-sucedida, será exibida a mensagem Deployment created successfully! juntamente com o Nome do Deployment e um Deployment ID (UUID) único.
|
||||||
|
|
||||||
@@ -326,4 +323,4 @@ Ao escolher um provedor, o CLI solicitará que você informe o nome da chave e a
|
|||||||
|
|
||||||
Veja o seguinte link para o nome de chave de cada provedor:
|
Veja o seguinte link para o nome de chave de cada provedor:
|
||||||
|
|
||||||
* [LiteLLM Providers](https://docs.litellm.ai/docs/providers)
|
* [LiteLLM Providers](https://docs.litellm.ai/docs/providers)
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ class PlusAPIMixin:
|
|||||||
"Please sign up/login to CrewAI+ before using the CLI.",
|
"Please sign up/login to CrewAI+ before using the CLI.",
|
||||||
style="bold red",
|
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
|
raise SystemExit
|
||||||
|
|
||||||
def _validate_response(self, response: requests.Response) -> None:
|
def _validate_response(self, response: requests.Response) -> None:
|
||||||
|
|||||||
Reference in New Issue
Block a user