Proper Doc
Browse files
README.md
CHANGED
|
@@ -1,7 +1,6 @@
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
---
|
| 4 |
-
|
| 5 |
# Table of Contents
|
| 6 |
|
| 7 |
* [LCToolFlow](#LCToolFlow)
|
|
@@ -70,16 +69,12 @@ This method instantiates the flow from a configuration file
|
|
| 70 |
#### run
|
| 71 |
|
| 72 |
```python
|
| 73 |
-
def run(
|
| 74 |
```
|
| 75 |
|
| 76 |
This method runs the flow. It runs the backend on the input data.
|
| 77 |
|
| 78 |
**Arguments**:
|
| 79 |
|
| 80 |
-
- `
|
| 81 |
-
|
| 82 |
-
**Returns**:
|
| 83 |
-
|
| 84 |
-
`Dict[str, Any]`: The output data of the flow.
|
| 85 |
|
|
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
---
|
|
|
|
| 4 |
# Table of Contents
|
| 5 |
|
| 6 |
* [LCToolFlow](#LCToolFlow)
|
|
|
|
| 69 |
#### run
|
| 70 |
|
| 71 |
```python
|
| 72 |
+
def run(input_message: FlowMessage)
|
| 73 |
```
|
| 74 |
|
| 75 |
This method runs the flow. It runs the backend on the input data.
|
| 76 |
|
| 77 |
**Arguments**:
|
| 78 |
|
| 79 |
+
- `input_message` (`FlowMessage`): The input message of the flow.
|
|
|
|
|
|
|
|
|
|
|
|
|
| 80 |
|