i am learning CrewAI and hitting error when using Groq. I am using jupyter notebook OpenAI works fine.
!pip install crewai crewai_tools langchain_community langchain-groq
Name: crewai
Version: 0.74.2
from langchain_groq import ChatGroq
import os
os.environ['GROQ_API_KEY'] = 'gsk_'
groq_api_key = os.environ.get('GROQ_API_KEY')
groq_llm = ChatGroq(
model="llama3-70b-8192",
groq_api_key = groq_api_key,
temperature=0.3,
max_tokens=4096
)
test_response = groq_llm.invoke("how are you")
print(test_response)
content=āI'm just a language model, I don't have feelings or emotions like humans do, so I don't have good or bad days. I'm always āonā and ready to assist you with any questions or tasks you may have!\n\nThat being said, I'm functioning properly and ready to help you with anything you need. How can I assist you today?ā additional_kwargs={} response_metadata={ātoken_usageā: {ācompletion_tokensā: 74, āprompt_tokensā: 13, ātotal_tokensā: 87, ācompletion_timeā: 0.238306954, āprompt_timeā: 0.000474925, āqueue_timeā: 0.014973195, ātotal_timeā: 0.238781879}, āmodel_nameā: āllama3-70b-8192ā, āsystem_fingerprintā: āfp_87cbfbbc4dā, āfinish_reasonā: āstopā, ālogprobsā: None} id=ārun-cc14f685-8170-46ef-a083-47c5fb4b856d-0ā usage_metadata={āinput_tokensā: 13, āoutput_tokensā: 74, ātotal_tokensā: 87}
writer = Agent(
role="Content Writer",
goal="Write insightful and factually accurate "
"opinion piece about the topic: {topic}",
backstory="You're working on a writing "
"a new opinion piece about the topic: {topic}. "
"You base your writing on the work of "
"the Content Planner, who provides an outline "
"and relevant context about the topic. "
"You follow the main objectives and "
"direction of the outline, "
"as provide by the Content Planner. "
"You also provide objective and impartial insights "
"and back them up with information "
"provide by the Content Planner. "
"You acknowledge in your opinion piece "
"when your statements are opinions "
"as opposed to objective statements.",
allow_delegation=False,
verbose=True,
llm=groq_llm
)
2024-10-19 07:15:41,125 - 8140583488 - llm.py-llm:178 - ERROR: Failed to get supported params: argument of type āNoneTypeā is not iterable