diff --git a/docs/core-concepts/Training-Crew.md b/docs/core-concepts/Training-Crew.md index 3e08b1072..1fae7ff4d 100644 --- a/docs/core-concepts/Training-Crew.md +++ b/docs/core-concepts/Training-Crew.md @@ -8,6 +8,7 @@ The training feature in CrewAI allows you to train your AI agents using the comm During training, CrewAI utilizes techniques to optimize the performance of your agents along with human feedback. This helps the agents improve their understanding, decision-making, and problem-solving abilities. +### Training Your Crew Using the CLI To use the training feature, follow these steps: 1. Open your terminal or command prompt. @@ -18,7 +19,26 @@ To use the training feature, follow these steps: crewai train -n ``` -Replace `` with the desired number of training iterations. This determines how many times the agents will go through the training process. +### Training Your Crew Programmatically +To train your crew programmatically, use the following steps: + +1. Define the number of iterations for training. +2. Specify the input parameters for the training process. +3. Execute the training command within a try-except block to handle potential errors. + +```python + n_iterations = 2 + inputs = {"topic": "CrewAI Training"} + + try: + YourCrewName_Crew().crew().train(n_iterations= n_iterations, inputs=inputs) + + except Exception as e: + raise Exception(f"An error occurred while training the crew: {e}") +``` + +!!! note "Replace `` with the desired number of training iterations. This determines how many times the agents will go through the training process." + ### Key Points to Note: - **Positive Integer Requirement:** Ensure that the number of iterations (`n_iterations`) is a positive integer. The code will raise a `ValueError` if this condition is not met.