File size: 1,566 Bytes
65fbdbe fcfe6cc 65fbdbe f420448 65fbdbe f420448 65fbdbe |
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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
from typing import Dict, Any
from aiflows.base_flows import AtomicFlow
class FixedReplyFlow(AtomicFlow):
""" This class implements a FixedReplyFlow. It's used to reply with a fixed reply.
*Configuration Parameters*:
- `name` (str): The name of the flow.
- `description` (str): A description of the flow. This description is used to generate the help message of the flow.
- `fixed_reply` (str): The fixed reply to reply with.
- The other configuration parameters are inherited from the default configuration of AtomicFlow (see AtomicFlow)
*Input Interface*:
- None
Output Interface:
- `fixed_reply` (str): The fixed reply.
:param \**kwargs: The keyword arguments passed to the AtomicFlow constructor. Among these is the flow_config which should also contain the "fixed_reply" key.
:type \**kwargs: Dict[str, Any]
"""
REQUIRED_KEYS_CONFIG = ["fixed_reply"]
__default_flow_config = {
"input_interface": [],
"output_interface": ["fixed_reply"],
}
def __init__(self, **kwargs):
super().__init__(**kwargs)
def run(self,
input_data: Dict[str, Any]) -> Dict[str, Any]:
""" Runs the FixedReplyFlow. It's used to reply with a fixed reply.
:param input_data: The input data dictionary
:type input_data: Dict[str, Any]
:return: The fixed reply
:rtype: Dict[str, Any]
"""
return {"fixed_reply": self.flow_config["fixed_reply"]}
|