<@ULVA73B9P>, what is up with the Prefect Cloud UI...
# ask-marvin
a
@Marvin, what is up with the Prefect Cloud UI’s “task inputs” tab within a flow’s task? All the parameters my task is receiving are displaying as `[]`:
Copy code
{
  "df": [
    {
      "inputType": "task_run",
      "id": "xxx"
    }
  ],
  "row": [],
  "index": [],
  "input_column": [],
  "output_column": [],
  "prompt_template": []
}
m
I'm sorry, but I couldn't find specific information about your issue with the Prefect Cloud UI's "task inputs" tab. It might be a good idea to reach out to the Prefect community directly for this issue. You can do so on their Discourse forum.
n
hi @Aaron Gibralter this is a common gotcha. task inputs here are references to upstream task results, we dont save the actual python things that got passed into tasks
so basically that reads as,
df
came from an upstream task, the rest are native python objects
a
ahh, thank you!
makes sense
Was trying to find that in documentation
n
makes sense, we should probably make that more clear. all we have now i believe is the tool tip
a
Yeah, didn’t know how to interpret that 🙂