The Remove Breakpoint tool is used to remove breakpoints to the source code. Developers can specify lines numbers or other natural language instructions to remove breakpoints from.

Example Usage

  • "Remove breakpoints from all the system out print lines"
  • "Remove breakpoints from lines 5 and 10"
  • "Remove the breakpoint from every getter function in this class"

Tool Schema

type: function
function:
  name: remove_breakpoint
  parameters:
    type: object
    properties:
      line_numbers:
        type: array
        description: The line number(s) to remove a breakpoint from.
        items:
          type: string
    required:
    - line_numbers
  description: Removes breakpoints from the specified line numbers.