I am building an email scraper that extracts the name and description of a list of AI tools.
In my first Text Parser module I am grabbing the name via regex.
In my second Text Parser module, I am passing the name of the tool as a variable and using another regex to grab the tool description.
Ultimately, I want to create an array that contains a collection for each tool, and each collection contains the name and the description.
Then I would loop through the array and insert the data into Airtble.
Looking for help on how to combine the name and description from 2 different modules into one array with the following structure:
Tools (array){
Tool 1 (collection)
Name: Sagehood
Description: AI agent for a 360 degree analysis of the U.S. stock market
Tool 2 (collection)
Name: Trellis AI
Description: Swarms of agents that automate manual PDF tasks
}
Thank you