AutoGen Debugger -An agent to debug python program

Created by team DebugYourCode on November 03, 2023

Problem statement: When you write a very long program and if it does not work, we spend hours debugging the program with breakpoints and log statements and print statements. Copy pasting the entire code to GPT may not solve the problem due to token limit. Solution: We introduce an autogen based agent that uses tools ReadFileTool and ProfilerTool 1. Executes the program 2. Track line by line execution 3. Identify the part that caused the bug 4. Recommend user a fix Advantages: Reduces several hours of debugging thereby improving developer productivity disclaimer: LLMs are known to hallucinate

Category tags: