Hello World
The simplest recipe
Last updated
The simplest recipe
Last updated
Let’s first get used to the infrastructure for writing, running, and debugging recipes.
Create a file hello.py
anywhere:
Run the recipe:
This will run the recipe and save an execution trace.
On the terminal, you will see a trace link and output:
If you follow the trace link (yours will be different), you will see a function node that you can click on, inspect inputs/outputs for, and show source code for:
Add another function and call it from say_hello
. Does it show up in the trace? What if you make it async and call it as result = await my_function()
?