Update CodeWriterAskUserFlow.py
Browse files- CodeWriterAskUserFlow.py +3 -2
CodeWriterAskUserFlow.py
CHANGED
@@ -11,11 +11,12 @@ log = logging.get_logger(f"aiflows.{__name__}")
|
|
11 |
|
12 |
class CodeWriterAskUserFlow(HumanStandardInputFlow):
|
13 |
"""This class is used to ask for user feedback whenever the controller is unsure of something, or need confirmation, etc.
|
14 |
-
|
|
|
15 |
- `question`: The question asked by the controller
|
16 |
*Expected Behaviour*:
|
17 |
- The question is displayed, and the user gives feedback by inputing string.
|
18 |
-
*
|
19 |
- `feedback`: The input of the user.
|
20 |
- `code`: No code was written.
|
21 |
"""
|
|
|
11 |
|
12 |
class CodeWriterAskUserFlow(HumanStandardInputFlow):
|
13 |
"""This class is used to ask for user feedback whenever the controller is unsure of something, or need confirmation, etc.
|
14 |
+
|
15 |
+
*Input Interface*:
|
16 |
- `question`: The question asked by the controller
|
17 |
*Expected Behaviour*:
|
18 |
- The question is displayed, and the user gives feedback by inputing string.
|
19 |
+
*Output Interface*:
|
20 |
- `feedback`: The input of the user.
|
21 |
- `code`: No code was written.
|
22 |
"""
|