The code throwing error after Task 1:
from crewai import Agent, LLM
import os
from dotenv import load_dotenv
load_dotenv()
llm = LLM(
model = “gemini/gemini-1.5-pro”,
verbose = True,
temperature = 0.5,
google_api_key = os.getenv(“GOOGLE_API_KEY”)
)
planner = Agent(
role=“Content Planner”,
goal=“Plan engaging and factually accurate content on {topic}”,
backstory="You’re working on planning a blog article "
“about the topic: {topic}.”
"You collect information that helps the "
"audience learn something "
"and make informed decisions. "
"Your work is the basis for "
“the Content Writer to write an article on this topic.”,
llm=llm,
memory = True,
allow_delegation=True,
verbose=True
)
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.”,
llm=llm,
memory = True,
allow_delegation=True,
verbose=True
)
editor = Agent(
role=“Editor”,
goal="Edit a given blog post to align with "
"the writing style of the organization. ",
backstory="You are an editor who receives a blog post "
"from the Content Writer. "
"Your goal is to review the blog post "
“to ensure that it follows journalistic best practices,”
"provides balanced viewpoints "
"when providing opinions or assertions, "
"and also avoids major controversial topics "
“or opinions when possible.”,
llm=llm,
memory = True,
allow_delegation=True,
verbose=True
)
Error message:
ERROR:root:LiteLLM call failed: litellm.AuthenticationError: geminiException - {
“error”: {
“code”: 400,
“message”: “API key not valid. Please pass a valid API key.”,
“status”: “INVALID_ARGUMENT”,
The API key is setup correctly and working, but the code throwing this error. Please help anyone if know the solution.