Issues when declaring Agent with 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

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

You dont need to use Langchain constructors anymore as we now use LiteLLM

1 Like

Also I woudl recommend you rebuild your crew with the CLI command crewai create crew

1 Like

Thank you @matt . Resolved.

import os
from crewai import LLM
groq_llm = LLM(
    model="groq/llama3-8b-8192",
    temperature=0.3,
    max_tokens=4096,
    api_key="gsk_",
    base_url="https://api.groq.com/openai/v1"
)
2 Likes