🔓 Unlock all 10,000+ workflows & prompts free Join Newsletter →
✅ Full access unlocked — explore all 10,000 AI workflow and prompt templates Browse Templates →
Home n8n Workflow
January 22, 2026

Perplexity to Google Docs, personas ready to share

Lisa Granqvist Partner Workflow Automation Expert

Persona work usually starts with good intentions, then turns into a mess of tabs, half-sourced notes, and “we’ll polish it later” docs that never get finished.

Product marketers feel it when positioning needs proof. UX researchers feel it when insights have to land fast. And founders end up guessing because the team can’t agree. This Perplexity Docs personas automation turns market research into a shareable, polished persona doc without the copy-paste spiral.

You’ll see what the workflow produces, what it automates behind the scenes, and how to run it reliably inside n8n.

How This Automation Works

The full n8n workflow, from trigger to final output:

n8n Workflow Template: Perplexity to Google Docs, personas ready to share

The Problem: Personas Get Built on Opinions

Most persona projects don’t fail because the team “didn’t try.” They fail because the work is split across too many tools and too many assumptions. Someone researches the market in one place, someone else writes a persona in a doc, and a third person tries to make it look presentable. Then you discover the insights aren’t traceable, the tone is inconsistent, and the output can’t be reused in workshops, onboarding, or messaging. It’s also slow. A “quick persona refresh” turns into a few hours of stitching, rewriting, and formatting.

The friction compounds. Here’s where it breaks down in real teams.

  • Research notes live in chat threads or spreadsheets, so nobody trusts the final persona when decisions get tense.
  • Formatting a persona doc for sharing takes longer than writing the first draft, especially when you need multiple personas.
  • Images and visual identity are always “coming later,” which makes personas harder to remember in workshops.
  • Market sizing and “is this a real segment?” questions show up late, right when you’re trying to ship.

The Solution: Perplexity Research → Google Docs Personas

This workflow starts with a simple web form, so you can feed it your website, region, and industry without creating a new brief every time. Perplexity then analyzes the market and pulls together a research-backed foundation for each persona, which means your “who are we building for?” conversation stays anchored in real signals. Next, an AI agent turns that foundation into detailed persona narratives and publishes them directly into a Google Doc. In parallel, it generates image prompts and uses DALL·E 3 to create a persona image for each profile. Finally, those images are stored in Google Drive, so you can share one doc and one folder with the whole team.

The workflow begins when someone submits the form. Then Perplexity produces structured market insight, the AI agent converts it into persona-ready language, and Google Docs becomes the final “source of truth.” Images are generated and saved to Drive right after, so the deliverable is complete, not “almost done.”

What You Get: Automation vs. Results

Example: What This Looks Like

Say you need 3 fresh personas for a new vertical. Manually, a typical flow looks like: about 60 minutes researching per persona, 30 minutes writing and formatting, and another 20 minutes hunting down or creating a usable image. That’s roughly 2 hours each, so about 6 hours total. With this workflow, you spend maybe 10 minutes filling the form and checking the final doc, then wait a short moment for processing. You get a Google Doc plus a Drive folder with persona images, ready to share.

What You’ll Need

  • n8n instance (try n8n Cloud free)
  • Self-hosting option if you prefer (Hostinger works well)
  • Perplexity for market insight research output
  • Google Docs to publish the persona deliverable
  • Google Drive to store persona images in a folder
  • OpenAI API key (get it from the OpenAI dashboard)

Skill level: Intermediate. You’ll connect accounts, paste API keys, and test a run end-to-end.

Don’t want to set this up yourself? Talk to an automation expert (free 15-minute consultation).

How It Works

A form submission kicks things off. Someone enters a few fields (like website, region, and industry) and submits. That becomes the single input source for the run.

Market research gets generated in Perplexity. The workflow asks Perplexity for the market insight you need to ground personas in reality, then passes that structured output forward. No copying from browser tabs into docs.

An AI agent turns research into persona-ready writing. It builds narrative sections you can actually use in product work, messaging, or onboarding, then writes them into Google Docs. Another agent creates image prompts, splits them into persona-by-persona items, and sends them to OpenAI for image generation.

The deliverables land in Google Docs and Google Drive. You end up with a shareable persona doc plus a Drive folder containing the generated persona images, so it’s easy to distribute internally or hand off to an agency.

You can easily modify the persona template to match your brand voice based on your needs. See the full implementation guide below for customization options.

Step-by-Step Implementation Guide

Step 1: Configure the Form Trigger

Set up the form that captures persona research inputs and starts the workflow.

  1. Add and open Incoming Form Trigger.
  2. Set Form Title to Creating Personas.
  3. Set Form Description to This form is used to create personas for your service based on market research.
  4. Add form fields with labels Website url (required), Region, and Inductry.

Step 2: Connect Perplexity Research

Configure the market research query that powers the persona narrative.

  1. Add Market Insight Search and connect it to Incoming Form Trigger.
  2. Credential Required: Connect your perplexityApi credentials.
  3. Set Model to sonar-deep-research.
  4. In Messages, keep the long research prompt and ensure it includes the form fields with expressions like {{ $json['Website url'] }}, {{ $json.Region }}, and {{ $json.Inductry }}.

Step 3: Set Up Persona Narrative Generation

Format the research results into structured persona narratives.

  1. Add Persona Narrative Builder and connect it to Market Insight Search.
  2. Set Text to ={{ $json.choices[0].message.content }}{{ $json.citations }}{{ $json.search_results }}.
  3. Keep Prompt Type as define and retain the detailed formatting instructions in System Message.
  4. OpenAI Chat Engine is connected as the language model for Persona Narrative Builder — ensure credentials are added to OpenAI Chat Engine.
  5. Credential Required: Connect your openAiApi credentials in OpenAI Chat Engine (model gpt-4.1-mini).

Persona Narrative Builder outputs to both Modify Doc Content and Create Image Prompts in parallel.

Step 4: Configure the Document Output

Write the formatted persona narrative into Google Docs.

  1. Add Modify Doc Content and connect it to Persona Narrative Builder.
  2. Credential Required: Connect your googleDocsOAuth2Api credentials.
  3. Set Operation to update.
  4. In Actions, add an Insert action with Text set to ={{ $json.output }}.

Step 5: Set Up Image Prompt Generation & Parsing

Generate image prompts from personas and parse them into individual items.

  1. Add Create Image Prompts and connect it in parallel from Persona Narrative Builder.
  2. Set Text to = and keep Prompt Type as define.
  3. Ensure Has Output Parser is enabled to use the structured parser.
  4. Mini GPT Model is connected as the language model for Create Image Prompts — ensure credentials are added to Mini GPT Model.
  5. Credential Required: Connect your openAiApi credentials in Mini GPT Model (model gpt-4o-mini).
  6. Parse Prompt JSON is an AI output parser for Create Image Prompts; add credentials to the parent Create Image Prompts node (not the parser).
  7. Add Split Prompt Items and connect it to Create Image Prompts.
  8. Set Field To Split Out to output.

⚠️ Common Pitfall: If the parser schema in Parse Prompt JSON doesn’t match the prompt output (array of objects with prompt), the split step will fail.

Step 6: Configure Image Rendering & Storage

Render persona images and store them in Google Drive.

  1. Add Render Persona Images and connect it to Split Prompt Items.
  2. Credential Required: Connect your openAiApi credentials.
  3. Set Resource to image and Prompt to ={{ $json.prompt }}.
  4. Add Store Images in Drive and connect it to Render Persona Images.
  5. Credential Required: Connect your googleDriveOAuth2Api credentials.
  6. Set Name to ={{ $now.format("yyyyMMddHHmmSSS") }}.
  7. Set Input Data Field Name to =data and select your target Folder (replace [YOUR_ID] with a valid Drive folder).

Tip: Use a dedicated Drive folder to keep persona images organized and easy to locate after each run.

Step 7: Test and Activate Your Workflow

Run a manual test to verify the end-to-end persona creation and image storage.

  1. Click Execute Workflow and submit the form in Incoming Form Trigger with a sample Website url, Region, and Inductry.
  2. Confirm Market Insight Search returns cited research and Persona Narrative Builder outputs formatted persona text.
  3. Verify Modify Doc Content updates your Google Doc with the persona narrative.
  4. Check that Create Image Prompts produces a JSON array and Split Prompt Items produces one item per prompt.
  5. Confirm Render Persona Images produces images and Store Images in Drive saves them into the selected folder with timestamp-based names.
  6. Toggle the workflow to Active for production use.
🔒

Unlock Full Step-by-Step Guide

Get the complete implementation guide + downloadable template

Common Gotchas

  • Google Docs and Google Drive credentials can expire or need specific permissions. If things break, check the connected Google account and consent scopes in n8n’s Credentials first.
  • If you’re using Wait nodes or external rendering, processing times vary. Bump up the wait duration if downstream nodes fail on empty responses.
  • Default prompts in AI nodes are generic. Add your brand voice early or you’ll be editing outputs forever.

Frequently Asked Questions

How long does it take to set up this Perplexity Docs personas automation?

About 30 minutes if your accounts and API keys are ready.

Do I need coding skills to automate Perplexity Docs personas?

No. You’ll connect services and adjust prompts, but you won’t write code.

Is n8n free to use for this Perplexity Docs personas workflow?

Yes. n8n has a free self-hosted option and a free trial on n8n Cloud. Cloud plans start at $20/month for higher volume. You’ll also need to factor in OpenAI API costs (often a few dollars for light testing, then usage-based).

Where can I host n8n to run this automation?

Two options: n8n Cloud (managed, easiest setup) or self-hosting on a VPS. For self-hosting, Hostinger VPS is affordable and handles n8n well. Self-hosting gives you unlimited executions but requires basic server management.

Can I customize this Perplexity Docs personas automation for different persona templates?

Yes, and you probably should. Most teams customize the persona sections inside the Persona Narrative Builder agent prompt, then adjust what gets written into Google Docs in the Modify Doc Content step. Common tweaks include adding “jobs to be done,” inserting a product-fit section for your specific app, and enforcing your brand voice so the output reads like your team wrote it.

Why is my Google Docs connection failing in this workflow?

Usually it’s expired Google authorization or the wrong Google account connected in n8n. Reconnect the Google Docs credential, confirm the account has access to the target document, and double-check Drive permissions if you’re also writing images to a shared folder. If it fails only on some runs, rate limits can also show up when you generate multiple personas at once.

How many personas can this Perplexity Docs personas automation handle?

A typical self-hosted setup can handle dozens of personas per run, as long as your server and API limits allow it.

Is this Perplexity Docs personas automation better than using Zapier or Make?

For this kind of workflow, n8n is usually the better fit because you’re juggling multi-step AI generation, structured parsing, branching, and file handling in Google Drive. Zapier and Make can do pieces of it, but the logic gets harder to maintain and costs can climb when every step is billed. n8n also gives you the self-hosted route, which is handy when you run lots of persona refreshes. That said, if you only need “form submission → create a doc,” simpler tools are fine. Talk to an automation expert if you want help choosing.

Once this is running, persona creation stops being a recurring “project” and becomes a repeatable system. Honestly, that’s the difference between guessing and aligning.

Need Help Setting This Up?

Our automation experts can build and customize this workflow for your specific needs. Free 15-minute consultation—no commitment required.

Lisa Granqvist

Workflow Automation Expert

Expert in workflow automation and no-code tools.

×

Use template

Get instant access to this n8n workflow Json file

💬
Get a free quote today!
Get a free quote today!

Tell us what you need and we'll get back to you within one working day.

Get a free quote today!
Get a free quote today!

Tell us what you need and we'll get back to you within one working day.

Launch login modal Launch register modal