Tachi67 commited on
Commit
32decf6
1 Parent(s): 107ff08

Update IntermediateAns_Jarvis.py

Browse files
Files changed (1) hide show
  1. IntermediateAns_Jarvis.py +4 -0
IntermediateAns_Jarvis.py CHANGED
@@ -10,6 +10,10 @@ log = logging.get_logger(f"aiflows.{__name__}")
10
 
11
 
12
  class IntermediateAns_Jarvis(HumanStandardInputFlow):
 
 
 
 
13
  def run(self,
14
  input_data: Dict[str, Any]) -> Dict[str, Any]:
15
 
 
10
 
11
 
12
  class IntermediateAns_Jarvis(HumanStandardInputFlow):
13
+ """This class inherits from the HumanStandardInputFlow class.
14
+ It is used to give an intermediate answer to the user. The user is then able to provide feedback on the intermediate result.
15
+ Depending on the user's feedback, the controller will decide to do different things (e.g. continue, re-plan, etc.)
16
+ """
17
  def run(self,
18
  input_data: Dict[str, Any]) -> Dict[str, Any]:
19