Proper Doc
Browse files
README.md
CHANGED
@@ -1,7 +1,6 @@
|
|
1 |
---
|
2 |
license: mit
|
3 |
---
|
4 |
-
|
5 |
# Table of Contents
|
6 |
|
7 |
* [fixed\_reply](#fixed_reply)
|
@@ -49,16 +48,12 @@ Output Interface:
|
|
49 |
#### run
|
50 |
|
51 |
```python
|
52 |
-
def run(
|
53 |
```
|
54 |
|
55 |
Runs the FixedReplyFlow. It's used to reply with a fixed reply.
|
56 |
|
57 |
**Arguments**:
|
58 |
|
59 |
-
- `
|
60 |
-
|
61 |
-
**Returns**:
|
62 |
-
|
63 |
-
`Dict[str, Any]`: The fixed reply
|
64 |
|
|
|
1 |
---
|
2 |
license: mit
|
3 |
---
|
|
|
4 |
# Table of Contents
|
5 |
|
6 |
* [fixed\_reply](#fixed_reply)
|
|
|
48 |
#### run
|
49 |
|
50 |
```python
|
51 |
+
def run(input_message: FlowMessage)
|
52 |
```
|
53 |
|
54 |
Runs the FixedReplyFlow. It's used to reply with a fixed reply.
|
55 |
|
56 |
**Arguments**:
|
57 |
|
58 |
+
- `input_message` (`FlowMessage`): The input message
|
|
|
|
|
|
|
|
|
59 |
|