Hello everyone,
I’m reaching out to the community for some assistance with a challenge I’ve encountered while working with make.com in my workflow.
Goal:
My goal is to create a workflow that does the following:
- Retrieves post information from WordPress (3 to 5 bundles).
- Sends this information to OpenAI to summarize each post.
- Receives the summarized output in JSON format from OpenAI.
- Parses the JSON output for each post.
- Aggregates these summaries into a single output.
The intention is to have a consolidated summary of multiple WordPress posts, which I plan to use for content analysis and reporting.
Steps Tried:
So far, I have managed to:
- Successfully retrieve post information from WordPress.
- Send the data to OpenAI and receive the summarized content in JSON for individual posts.
- Parse the JSON output to extract the necessary information.
However, I am stuck at the aggregation stage. The main issue is that the workflow processes each bundle of data from start to finish individually, and I can’t seem to figure out how to combine the JSON outputs into one.
I have tried using the text aggregator available in make.com to merge the outputs but to no avail. The workflow seems to treat each bundle separately, which prevents me from combining the data as intended.
This is a sample of the output I get from the OpenAI module that I proceed then to parse with parse JSON module:
{
"Title": "Holiday Marketing 2023: Insights and Strategies for Success",
"Content": "Gain valuable insights into consumer attitudes and make informed decisions for a successful holiday season in 2023. Discover key predictions and trends, such as the shift towards online shopping, the optimal timing for holiday shopping, and the ongoing relevance of Black Friday. Understand consumer spending habits and budgeting trends that will impact your holiday marketing strategies. Download the full guide for a comprehensive overview and get ahead of the game this season."
}
My final goal would be to merge all these in a summaries in a single text, which would look something like this:
Title: Holiday Marketing 2023: Insights and Strategies for Success
Content: Gain valuable insights into consumer attitudes and make informed decisions for a successful holiday season in 2023. Discover key predictions and trends, such as the shift towards online shopping, the optimal timing for holiday shopping, and the ongoing relevance of Black Friday. Understand consumer spending habits and budgeting trends that will impact your holiday marketing strategies. Download the full guide for a comprehensive overview and get ahead of the game this season.
Title: Holiday Marketing 2023: Insights and Strategies for Success
Content: Gain valuable insights into consumer attitudes and make informed decisions for a successful holiday season in 2023. Discover key predictions and trends, such as the shift towards online shopping, the optimal timing for holiday shopping, and the ongoing relevance of Black Friday. Understand consumer spending habits and budgeting trends that will impact your holiday marketing strategies. Download the full guide for a comprehensive overview and get ahead of the game this season.
Title: Holiday Marketing 2023: Insights and Strategies for Success
Content: Gain valuable insights into consumer attitudes and make informed decisions for a successful holiday season in 2023. Discover key predictions and trends, such as the shift towards online shopping, the optimal timing for holiday shopping, and the ongoing relevance of Black Friday. Understand consumer spending habits and budgeting trends that will impact your holiday marketing strategies. Download the full guide for a comprehensive overview and get ahead of the game this season.