Tachi67 commited on
Commit
302d1a3
1 Parent(s): 45b251b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +43 -0
README.md CHANGED
@@ -1,3 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  # Table of Contents
2
 
3
  * [InteractiveCodeGenFlow](#InteractiveCodeGenFlow)
 
1
+ ### Structure of InteractiveCodeGenFlow
2
+
3
+ ```
4
+ goal
5
+ |
6
+ |
7
+ |
8
+ v
9
+ +------------------+
10
+ | MemReading | Reads in the memory in the memory files. (https://huggingface.co/Tachi67/MemoryReadingFlowModule)https://huggingface.co/Tachi67/MemoryReadingFlowModule
11
+ +------------------+
12
+ |
13
+ | (code_library: function signatures of the library)
14
+ |
15
+ v
16
+ +------------------+
17
+ | CodeGenerator | Generates code given goal, function signatures of the library. (https://huggingface.co/Tachi67/CodeGeneratorFlowModule)
18
+ +------------------+
19
+ |
20
+ | (code, language_of_code)
21
+ |
22
+ v
23
+ +-------------------+
24
+ | CodeFileEdit | Edit a temp code file with the code generated. (https://huggingface.co/Tachi67/CodeFileEditFlowModule)
25
+ +-------------------+
26
+ |
27
+ | (temp_code_file_location)
28
+ |
29
+ v
30
+ +------------------+
31
+ | ParseFeedback | Opens up the temp file until user closes the file, parse for user feedback. (https://huggingface.co/Tachi67/ParseFeedbackFlowModule)
32
+ +------------------+
33
+ |
34
+ | (code, feedback)
35
+ |
36
+ v
37
+ feedback
38
+
39
+ ```
40
+
41
+ Memory_files:
42
+ - library.py
43
+
44
  # Table of Contents
45
 
46
  * [InteractiveCodeGenFlow](#InteractiveCodeGenFlow)