Tachi67's picture
Upload README.md
1a76c93
|
raw
history blame
953 Bytes

Table of Contents

InteractiveCodeGenFlow

InteractiveCodeGenFlow Objects

class InteractiveCodeGenFlow(SequentialFlow)

This flow writes code in an interactive manner. It is a sequential flow composed of:

  1. MemoryReading: reads in the code library.
  2. CodeGenerator: generates code based on the goal and functions in the code library.
  3. CodeFileEditor: writes the generated code to a temp file for the user to see, edit and provide feedback.
  4. ParseFeedback: opens up the temp file with vscode and parses the feedback from the user.

Input Interface:

  • goal

Output Interface:

  • code
  • feedback
  • temp_code_file_location

__init__