diff --git a/docs/concepts/crews.mdx b/docs/concepts/crews.mdx index 97d1a7d6c..8ebefff2f 100644 --- a/docs/concepts/crews.mdx +++ b/docs/concepts/crews.mdx @@ -117,6 +117,12 @@ class YourCrewName: ) ``` +How to run the above code: + +```python code +YourCrewName().crew().kickoff(inputs={"any": "input here"}) +``` + Tasks will be executed in the order they are defined. @@ -184,6 +190,11 @@ class YourCrewName: verbose=True ) ``` +How to run the above code: + +```python code +YourCrewName().crew().kickoff(inputs={}) +``` In this example: