Nicolas Oulianov
12/06/2022, 1:46 PMnode.py
and pipeline.py
.
• It also opens up the possibility of generating the pipeline automatically (by scanning the node.py
file for every function decorated by node_decorator), making pipeline.py
totally optional.
• I could even see the inputs and outputs being automatically inferred from the function definition, a bit like FastAPI does using Pydantic models.
Did you every see or use this decorator syntax for defining Kedro nodes ?
What’s your experience with OpenAI’s chatbot ?
Could this be implemented in Kedro ? (we would just need to make so func
can be a positional argument)datajoely
12/06/2022, 1:55 PMI could even see the inputs and outputs being automatically inferred from the function definition, a bit like FastAPI does using Pydantic models.This is something I’ve discussed before and even seen some open source users prototype around
Nicolas Oulianov
12/06/2022, 3:17 PMdatajoely
12/06/2022, 3:33 PMDeepyaman Datta
12/06/2022, 4:37 PMnode_decorator
logic would need to be changed)Nicolas Oulianov
12/06/2022, 4:53 PMJuan Luis
03/10/2023, 2:07 PM