diff --git a/crews/starter_template/README.md b/crews/starter_template/README.md index c7508272c..a01c938df 100644 --- a/crews/starter_template/README.md +++ b/crews/starter_template/README.md @@ -23,7 +23,7 @@ This is the main file that you will use to run your custom crew. To create a Crew , you need to define Agent ,Task and following Parameters: 1. Agent: List of agents that you want to include in the crew. 2. Task: List of tasks that you want to include in the crew. -3. verbose: If True, print the output of each task.(default is False). +3. verbose: If True, print the output of each task.(default is True). 4. debug: If True, print the debug logs.(default is False). [More Details about Crew](https://docs.crewai.com/concepts/crew). \ No newline at end of file diff --git a/crews/starter_template/agents.py b/crews/starter_template/agents.py index edbf7d2d2..5fc0e0acd 100644 --- a/crews/starter_template/agents.py +++ b/crews/starter_template/agents.py @@ -1,6 +1,6 @@ from crewai import Agent from textwrap import dedent -from langchain.llms import OpenAI, Ollama +from langchain_community.llms import OpenAI, Ollama from langchain_openai import ChatOpenAI diff --git a/crews/starter_template/main.py b/crews/starter_template/main.py index 403b98eeb..052b4bf9c 100644 --- a/crews/starter_template/main.py +++ b/crews/starter_template/main.py @@ -10,7 +10,7 @@ # Install duckduckgo-search for this example: # !pip install -U duckduckgo-search -from langchain.tools import DuckDuckGoSearchRun +from langchain_community.tools import DuckDuckGoSearchRun search_tool = DuckDuckGoSearchRun()