Devin Dennis
07/29/2024, 8:58 PMMarvin
07/29/2024, 8:58 PMdef my_function(args, kwargs):
...
Then you should be calling it with parameters 'args' and 'kwargs'.
If your function signature should accept parameters like 'upload_id' and 'thumb_api_url', ensure that your function is defined accordingly and you are passing these parameters correctly.
For more information on how to pass parameters to Prefect flows and deployments, refer to the Prefect documentation:
https://docs.prefect.io/latest/concepts/deployments-block-based/
If you need more detailed assistance, it would help to see the relevant code snippets where the function is defined and called.