Text parser separating into bundles which I see on the results but not showing up on the next module

I don’t understand how to get this working. Perhaps I am missing something. To make it easier to explain here’s a video showing what I mean.

I did have a read through of the other similar requests but it didn’t solve it for me. I do now better understand the situation is that when using global match it separates each one into a new bundle. But I can’t figure out how to be able to select each one individually. It’s been a right pickle trying to sort it and this will be massively helpful if we can.

What is your goal here what do you want to get?

the preview will always only show you the first bundle. Can you give an example of what you would like the correct data to look like by typing it out.

This might be what you are looking for. Let me know.

Same JSON structure here bundles of data we want to get the URL into one as you would do for your $1 just replace where I use URL with $1.

Step 1. Aggregate on the variable like you did

Step 2. Map over the URL in your case $1

Step 3. Now you have you one Array with all your data you can use at once in chat gpt

Example:

[
{
“model”: “gpt-4o”,
“top_p”: 1,
“select”: “chat”,
“messages”: [
{
“role”: “system”,
“content”: “use thishttps://url.com/1, URL.com - MediaOptions, URL.com - MediaOptions, URL.com - MediaOptions, URL.com - MediaOptions, URL.com - MediaOptions
}
],
“max_tokens”: 100,
“temperature”: 1,
“n_completions”: 1,
“response_format”: “text”
}
]

If this is not what you wanted let me know I will try to help @thearchitech

@Mr.Make you legend! Thanks so much for hopping on this for me.

Basically I need to be able to use each of these separately on the next module so I can use them as headings. I will also need a similar functionality for other scenarios.

I went through the steps and did as you suggested and thought it was going to work when I saw this!

But then when I went to map it only showed me the first option again
Screenshot 2024-06-28 at 07.28.07

I tested to see if I could map them by adding in the number for each but this also didn’t work.

Gotcha now. l will help you out.

@thearchitech
Same as before just replacing my variable URL with yours.
All you have to do now is add
toCollection on the variable that we did and nest the map inside of it.
Like seen below

now we can achieve what you want and place any of those titles wherever we want and in my case links.

Let me know if this solves it for you.