Can't get Chatgpt read the data

Hi everyone,

I’m trying to make Chatgpt analyze and classify every item that passes through the flow into one of the assigned categories. However I can’t get it to read the data thats in the field.

How can i fix this?

Hi,

From your second screenshot, can you provide me the input prompt? There you can see whether it’s mapped or not

Hi @Damian5.

It looks like you have an array of objects that you want to classify, based on the title of each one.

In this case, you have 2 options:

  1. Add an iterator over the array and send a request to ChatGPT for each element. This is effective, but suboptimal.
  2. Iterate over the array, Aggregate the results to JSON and then feed the JSON array to ChatGPT, asking it to return another JSON array with each title/classification object. This is what I usually do.

@damato