ai-codebase-intelligence / agents /critic_agent.py
pkraman06's picture
Create critic_agent.py
47ee361 verified
raw
history blame contribute delete
262 Bytes
from crewai import Agent
def create_critic_agent():
return Agent(
role="Critic",
goal="Review generated solutions and improve accuracy",
backstory="Code reviewer focused on optimization and correctness.",
verbose=True,
)