18.4 C
New York
Saturday, October 5, 2024

Construct AI Pair Programmer with CrewAI


Introduction

As the necessity for environment friendly software program growth continues, synthetic intelligence turns into a precious colleague for programmers. AI-powered coding assistants are altering the sport by making it simpler for builders to put in writing, debug, and optimize their code like pair programmers. On this article, we’ll learn to construct an AI pair programmer utilizing CrewAI brokers to simplify your coding duties and enhance your productiveness in software program growth.

Overview

  • Grasp the fundamentals of CrewAI and its position in helping coding duties.
  • Acknowledge key elements—Brokers, Duties, Instruments, and Crews—and their interactions.
  • Achieve hands-on expertise in organising AI brokers for code era and evaluation.
  • Study to configure a number of AI brokers to work collectively on coding duties.
  • Develop expertise to make use of CrewAI to judge and optimize code high quality.

What Can an AI Pair Programmer Do?

Let’s discover just a few use circumstances of what an AI pair programmer can do.

  1. Write code: We will generate the code for a given drawback utilizing an AI agent and evaluation it with one other agent.
  2. Enhance present code: If we write the code, our pair programmer can consider it primarily based on the analysis necessities.
  3. Optimize code: We will ask for any modifications to the code to optimize it, reminiscent of including feedback, a doc string, and so forth.
  4. Debug code: Errors are inevitable within the code. However not like rubber duck, our pair programmer could make options.
  5. Write check circumstances: Let the AI agent write the check circumstances for each edge case. We will even use it for test-driven growth. 

On this article, we are going to cowl the primary two duties.

What’s CrewAI?

CrewAI is a well-liked framework for constructing AI brokers. It consists of key elements reminiscent of Brokers, Duties, Instruments, and Crews.

  • Agent: At its core, an agent makes use of a big language mannequin (LLM) to generate outputs primarily based on enter prompts. It might probably name varied instruments, settle for human enter, and talk with different brokers to finish duties.
  • Process: A process outlines what the agent will accomplish, specifying the outline, the agent to make use of, and the instruments that may be known as upon.
  • Device: Brokers can make the most of varied instruments to carry out duties like net searches, studying recordsdata, and executing code enhancing the capabilities of the AI Agent.
  • Crew: A crew is a gaggle of brokers collaborating to finish a set of duties. Every crew defines how brokers work together, share info, and delegate tasks.

Additionally Learn: Constructing Collaborative AI Brokers With CrewAI

Now, let’s construct an agent to achieve a greater understanding!

What are the Stipulations?

Earlier than constructing an AI Pair Programmer with a CrewAI agent, guarantee you will have the API keys for LLMs.

Accessing an LLM through API

Begin by producing an API key for the LLM you propose to make use of. Then, create a .env file to retailer this key securely. This may hold it personal whereas making it simply accessible inside your mission.

Instance of a .env File

Right here’s an instance of what a .env file seems like:

Libraries Required

Now we have used the next variations for the foremost libraries:

  • crewai – 0.66.0
  • crewai-tools – 0.12.1

Automating Code Creation with CrewAI

On this part, we are going to import the required libraries and outline brokers to generate and evaluation code. This hands-on strategy will allow you to perceive methods to make the most of CrewAI successfully.

Import the Vital Libraries

from dotenv import load_dotenv
load_dotenv('/.env')

from crewai import Agent, Process, Crew

Defining the Code Author Agent

We will use one agent to generate the code and one other agent to evaluation the code.

code_writer_agent = Agent(position="Software program Engineer",
                          aim="Write optimized code for a given process", 
                          backstory="""You're a software program engineer who writes code for a given process.
                               The code ought to be optimized, and maintainable and embody doc string, feedback, and so forth.""",
                          llm='gpt-4o-mini',
                          verbose=True)

Rationalization of Agent Parameters

  • position: Defines what the agent is and defines it primarily based on the duties we wish the agent to finish.
  • Objective: Defines what the agent tries to attain. The agent makes the choices to attain this aim.
  • backstory: Supplies context to the position and aim of the agent. This can be utilized for higher interplay with the agent as that is despatched because the immediate to the LLM.
  • llm: LLM used within the agent. CrewAI makes use of LiteLLM to name the LLMs, so seek advice from its documentation for the accessible fashions.
  • verbose: we are able to set verbose=True to take a look at the enter and output of the agent.

Defining the Code Author Process

code_writer_task = Process(description='Write the code to resolve the given drawback within the {language} programming language.'
                        'Drawback: {drawback}',
                        expected_output="Nicely formatted code to resolve the issue. Embody kind hinting",
                        agent=code_writer_agent)

Rationalization of Process Parameters

  • description: write a transparent and detailed assertion of aims for the duty that must be accomplished. curly braces {} are used to point variables. On this case, we cross the ‘drawback’ and ‘language’ values to the duty.
  • expected_output: How the output of the duty ought to seem like. We will additionally get structured output utilizing Pydantic lessons.
  • agent: defines the agent that ought to be used to attain this process.

Defining the Code Reviewer Agent and Process

Equally, let’s outline code_reviewer_agent and code_reviewer_task.

code_reviewer_agent = Agent(position="Senior Software program Engineer",
                            aim="Make certain the code written is optimized and maintainable", 
                            backstory="""You're a Senior software program engineer who opinions the code written for a given process.
                               You must test the code for readability, maintainability, and efficiency.""",
                            llm='gpt-4o-mini',
                            verbose=True)
                            
code_reviewer_task = Process(description="""A software program engineer has written this code for the given drawback 
                            within the {language} programming language.' Evaluate the code critically and 
                            make any modifications to the code if mandatory. 
                            'Drawback: {drawback}""",
                          expected_output="Nicely formatted code after the evaluation",
                          agent=code_reviewer_agent)

Constructing and Operating the Crew

Now, we are able to construct the crew and run it:

crew = Crew(brokers=[code_writer_agent, code_reviewer_agent], 
            duties=[code_writer_task, code_reviewer_task], 
            verbose=True)
            
outcome = crew.kickoff(inputs={'drawback': 'create a recreation of tic-tac-toe', 'language': 'Python'})            

The pattern output will likely be as follows:

Building and Running the Crew
Building and Running the Crew

End result

The outcome can have the next

outcome.dict().keys()
>>> dict_keys(['raw', 'pydantic', 'json_dict', 'tasks_output', 'token_usage'])

# we are able to additionally test token utilization
outcome.dict()['token_usage']
>>> {'total_tokens': 2656,
 'prompt_tokens': 1425,
 'completion_tokens': 1231,
 'successful_requests': 3}
 
# we are able to print the ultimate outcome
print(outcome.uncooked)

We will run the code generated by the Agent:

TIc Tac Toe

Automated Code Analysis with Crew AI

After constructing the code era and evaluation brokers, we are going to now consider an present code file.

Gathering Necessities

First, we are going to collect analysis necessities for an issue utilizing an agent after which consider the code primarily based on these necessities utilizing one other agent.

Utilizing Instruments for Enhanced Capabilities

We are going to use the FileReadTool to learn recordsdata from the system. Instruments improve agent capabilities by enabling actions like studying recordsdata or looking out the Web.

We will assign instruments to each duties and brokers. Instruments assigned in Duties will override instruments within the agent.

Initialize Agent and Process for Requirement Gathering

code_requirements_agent = Agent(position="Information Scientist",
                          aim="present are all issues that ought to be required within the code to resolve the given drawback.", 
                          backstory="""You're a Information Scientist who decides what are all issues required 
                          within the code to resolve a given drawback/process. The code will likely be written primarily based on 
                          the necessities offered by you.""",
                          llm='gpt-4o-mini',
                          verbose=True)
                         
code_requirement_task = Process(description='Write the necessities for the given drawback step-by-step.'
                        'Drawback: {drawback}',
                            expected_output="Nicely formatted textual content which specifies what's required to resolve the issue.",
                            agent=code_requirements_agent,
                            human_input=True)                         

Within the above process, we have now assigned human_input to True. So, the agent asks for enter from the person as soon as it generates the necessities. We will ask it to make any modifications if required.

Evaluating the Code

Now, do the identical analysis. Right here, we use the device to learn the file. We additionally use GPT-4o for higher output because the context measurement is bigger.

from crewai_tools import DirectoryReadTool, FileReadTool
file_read_tool = FileReadTool('EDA.py')

code_evaluator_agent = Agent(position="Information Science Evaluator",
                            aim="Consider the given code file primarily based on the necessities offered for a given drawback", 
                            backstory="""You're a Information Science evaluator who opinions and evaluates the code.
                               You must test the code primarily based on the necessities given to you""",
                            llm='gpt-4o',
                            verbose=True)
                            
code_evaluator_task = Process(description="""A code file is given to you. 
                            Consider the file primarily based on the necessities given because the context.
                            Present the one evaluation and analysis of the code because the output, not the code.
                            """,
                           expected_output="Detailed analysis outcomes of the code file primarily based on the necessities."
                           'Evaluate the code file for every level of the necessities given to you'
                           'Present analysis outcomes as textual content',
                           instruments=[file_read_tool],
                           agent=code_evaluator_agent)                            

Constructing the Crew for Analysis

Allow us to construct the crew and outline the issue to get the necessities for it.

crew = Crew(brokers=[code_requirements_agent, code_evaluator_agent], 
            duties=[code_requirement_task, code_evaluator_task], 
            verbose=True)
            
drawback = """
Carry out EDA on the NYC taxi journey length dataset.
Right here is the outline of all of the variables/options accessible within the dataset which can allow you to to carry out EDA:

    id - a singular identifier for every journey
    vendor_id - a code indicating the supplier related to the journey file
    pickup_datetime - date and time when the meter was engaged
    dropoff_datetime - date and time when the meter was disengaged
    passenger_count - the variety of passengers within the car (driver entered worth)
    pickup_longitude - the longitude the place the meter was engaged
    pickup_latitude - the latitude the place the meter was engaged
    dropoff_longitude - the longitude the place the meter was disengaged
    dropoff_latitude - the latitude the place the meter was disengaged
    store_and_fwd_flag - This flag signifies whether or not the journey file was held in car reminiscence earlier than sending to the seller as a result of the car didn't have a connection to the server (Y=retailer and ahead; N=not a retailer and ahead journey)
    trip_duration - (goal) length of the journey in seconds

"""            

outcome = crew.kickoff(inputs={'drawback': drawback})

Output from Duties

Right here’s how the outcome will seem like whereas asking for human enter:

Output from Tasks

We will additionally get the output of any process as follows:

print(code_requirement_task.output.uncooked)

# last output
print(outcome.uncooked)

On this method, we are able to construct versatile crews to make our personal AI pair programmer.

Conclusion

CrewAI affords a robust framework for enhancing software program growth by leveraging AI brokers to automate code era, evaluation, and analysis duties. Builders can streamline their workflow and enhance productiveness by defining clear roles, targets, and duties for every agent. Incorporating an AI Pair Programmer with CrewAI into your software program growth workflow can considerably improve productiveness and code high quality.

CrewAI’s versatile framework permits for seamless collaboration between AI brokers, making certain your code is optimized, maintainable, and error-free. As AI know-how evolves, leveraging instruments like CrewAI for pair programming will change into a vital technique for builders to streamline their work and enhance effectivity. With its versatile instruments and collaborative options, CrewAI has the potential to revolutionize how we strategy programming, making the method extra environment friendly and efficient.

Regularly Requested Questions

Q1. What’s CrewAI and the way does it assist in software program growth?  

A. CrewAI is a framework that leverages AI brokers. It may be used to help builders with duties like writing, reviewing, and evaluating code. It enhances productiveness by automating repetitive duties, permitting builders to deal with extra advanced facets of growth.

Q2. What are the important thing elements of CrewAI?  

A. The core elements of CrewAI embody Brokers, Duties, Instruments, and Crews. Brokers carry out actions primarily based on their outlined roles, Duties specify the aims, Instruments lengthen the brokers’ capabilities, and Crews enable a number of brokers to collaborate on advanced workflows.

Q3. How do I arrange an AI agent in CrewAI to generate code?  

A. To arrange an AI agent, you outline its position (e.g., “Software program Engineer”), aim (e.g., “Write optimized code”), and backstory for context, and specify the LLM (language mannequin) for use. You additionally create a corresponding Process that particulars the issue and anticipated output.

This autumn. Can CrewAI brokers work collectively on duties?  

A. Sure, CrewAI brokers can collaborate on duties by being a part of a “Crew.” Every agent within the crew can have a selected process, reminiscent of writing code or reviewing it, permitting for environment friendly teamwork amongst AI brokers.

Q5. What instruments can be utilized with CrewAI brokers?  

A. CrewAI brokers can use varied instruments to reinforce their capabilities, reminiscent of studying recordsdata, conducting net searches, or working code. These instruments will be assigned to brokers and duties, permitting for extra dynamic and highly effective workflows.

I’m working as an Affiliate Information Scientist at Analytics Vidhya, a platform devoted to constructing the Information Science ecosystem. My pursuits lie within the fields of Deep Studying and Pure Language Processing (NLP).



Supply hyperlink

Related Articles

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Latest Articles