File size: 1,061 Bytes
1e4c673
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f7ac84d
1e4c673
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Table of Contents

* [ParseFeedbackAtomicFlow](#ParseFeedbackAtomicFlow)
  * [ParseFeedbackAtomicFlow](#ParseFeedbackAtomicFlow.ParseFeedbackAtomicFlow)
* [\_\_init\_\_](#__init__)

<a id="ParseFeedbackAtomicFlow"></a>

# ParseFeedbackAtomicFlow

<a id="ParseFeedbackAtomicFlow.ParseFeedbackAtomicFlow"></a>

## ParseFeedbackAtomicFlow Objects

```python
class ParseFeedbackAtomicFlow(AtomicFlow)
```

This flow parses the feedback from the user. The flow is supposed to be called after the CodeFileEdit or PlanFileEdit flow.
The flow will open the file in VSCode and wait for the user to edit the file. Once the user closes the file, the flow will parse the file and return the content of the file.

*Input Interface*:
- `temp_code_file_location`: Notice that if we are parsing the plan file, this should be changed to `temp_plan_file_location`.

*Output Interface*:
- `code`: The content of the code file. In case that we are parsing the plan file, the output is then `plan`
- `feedback`: The feedback from the user.

<a id="__init__"></a>

# \_\_init\_\_