mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-09 08:08:32 +00:00
feat: add cli to run the crew (#1080)
* feat: add cli to run the crew * feat: change command to run_crew * feat: change pyprojet to run_Crew * docs: change docs to address crewai run
This commit is contained in:
committed by
GitHub
parent
86c6760f58
commit
297dc93fb4
@@ -244,6 +244,10 @@ def run():
|
|||||||
|
|
||||||
To run your project, use the following command:
|
To run your project, use the following command:
|
||||||
|
|
||||||
|
```shell
|
||||||
|
$ crewai run
|
||||||
|
```
|
||||||
|
or
|
||||||
```shell
|
```shell
|
||||||
$ poetry run my_project
|
$ poetry run my_project
|
||||||
```
|
```
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ from .create_crew import create_crew
|
|||||||
from .evaluate_crew import evaluate_crew
|
from .evaluate_crew import evaluate_crew
|
||||||
from .replay_from_task import replay_task_command
|
from .replay_from_task import replay_task_command
|
||||||
from .reset_memories_command import reset_memories_command
|
from .reset_memories_command import reset_memories_command
|
||||||
|
from .run_crew import run_crew
|
||||||
from .train_crew import train_crew
|
from .train_crew import train_crew
|
||||||
|
|
||||||
|
|
||||||
@@ -147,5 +148,12 @@ def test(n_iterations: int, model: str):
|
|||||||
evaluate_crew(n_iterations, model)
|
evaluate_crew(n_iterations, model)
|
||||||
|
|
||||||
|
|
||||||
|
@crewai.command()
|
||||||
|
def run():
|
||||||
|
"""Run the crew."""
|
||||||
|
click.echo("Running the crew")
|
||||||
|
run_crew()
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
crewai()
|
crewai()
|
||||||
|
|||||||
23
src/crewai/cli/run_crew.py
Normal file
23
src/crewai/cli/run_crew.py
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
import subprocess
|
||||||
|
|
||||||
|
import click
|
||||||
|
|
||||||
|
|
||||||
|
def run_crew() -> None:
|
||||||
|
"""
|
||||||
|
Run the crew by running a command in the Poetry environment.
|
||||||
|
"""
|
||||||
|
command = ["poetry", "run", "run_crew"]
|
||||||
|
|
||||||
|
try:
|
||||||
|
result = subprocess.run(command, capture_output=False, text=True, check=True)
|
||||||
|
|
||||||
|
if result.stderr:
|
||||||
|
click.echo(result.stderr, err=True)
|
||||||
|
|
||||||
|
except subprocess.CalledProcessError as e:
|
||||||
|
click.echo(f"An error occurred while running the crew: {e}", err=True)
|
||||||
|
click.echo(e.output, err=True)
|
||||||
|
|
||||||
|
except Exception as e:
|
||||||
|
click.echo(f"An unexpected error occurred: {e}", err=True)
|
||||||
@@ -34,6 +34,10 @@ poetry install
|
|||||||
|
|
||||||
To kickstart your crew of AI agents and begin task execution, run this from the root folder of your project:
|
To kickstart your crew of AI agents and begin task execution, run this from the root folder of your project:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ crewai run
|
||||||
|
```
|
||||||
|
or
|
||||||
```bash
|
```bash
|
||||||
poetry run {{folder_name}}
|
poetry run {{folder_name}}
|
||||||
```
|
```
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ crewai = { extras = ["tools"], version = "^0.46.0" }
|
|||||||
|
|
||||||
[tool.poetry.scripts]
|
[tool.poetry.scripts]
|
||||||
{{folder_name}} = "{{folder_name}}.main:run"
|
{{folder_name}} = "{{folder_name}}.main:run"
|
||||||
|
run_crew = "{{folder_name}}.main:run"
|
||||||
train = "{{folder_name}}.main:train"
|
train = "{{folder_name}}.main:train"
|
||||||
replay = "{{folder_name}}.main:replay"
|
replay = "{{folder_name}}.main:replay"
|
||||||
test = "{{folder_name}}.main:test"
|
test = "{{folder_name}}.main:test"
|
||||||
|
|||||||
Reference in New Issue
Block a user