Majestic

  • Site Explorer
    • Majestic
    • Resumo
    • Domínios de Ref
    • Backlinks
    • * Novo
    • * Perdido
    • Contexto
    • Texto Âncora
    • Páginas
    • Tópicos
    • Link Graph
    • Sites relacionados
    • Ferramentas Avançadas
    • Author ExplorerBeta
    • Summary
    • Similar Profiles
    • Profile Backlinks
    • Attributions
  • Comparar
    • Resumo
    • Histórico de Backlink
    • Histórico do Flow Metric
    • Tópicos
    • Caçador de Grupinhos
  • Ferramentas de Links
    • Meu Majestic
    • Atividade Recente
    • Relatórios
    • Campanhas
    • Domínios Verificados
    • OpenApps
    • Chaves de API
    • Palavras-chave
    • Gerador de Palavra-chave
    • Keyword Checker
    • Search Explorer
    • Ferramentas de Links
    • Backlinks em Massa
    • Verificador de Vizinhança
    • Enviar URLs
    • Experimental
    • Fusão de Índice
    • Disputa de Link Profile
    • Links Recíprocos
    • Solo Links
    • Relatório em pdf
    • Typo Domain
  • Free SEO Tools
    • Começar
    • Verificador de Backlink
    • Majestic Million
    • Plugins Majestic
    • Google Sheets
    • Post Popularity
    • Social Explorer
  • Suporte
    • Blog Link externo
    • Suporte
    • Começar
    • Ferramentas
    • Assinaturas e Fatura
    • Perguntas frequentes
    • Glossário
    • Guia de Estilo
    • Vídeos Explicativos
    • API Reference Guide Link externo
    • Entre em Contato
    • Sobre Backlinks e SEO
    • SEO in 2025
    • The Majestic SEO Podcast
    • All Podcasts
    • What is Trust Flow?
    • Guias de link building
  • Assine GRATUITAMENTE
  • Planos e Preços
  • Login
  • Language flag icon
    • English
    • Deutsch
    • Español
    • Français
    • Italiano
    • 日本語
    • Nederlands
    • Polski
    • Português
    • 中文
  • Começar
  • Login
  • Planos e Preços
  • Assine GRATUITAMENTE
    • Resumo
    • Domínios de Ref
    • Mapa
    • Backlinks
    • Novo
    • Perdido
    • Contexto
    • Texto Âncora
    • Páginas
    • Tópicos
    • Link Graph
    • Sites relacionados
    • Ferramentas Avançadas
    • Resumo
      Pro
    • Histórico de Backlink
      Pro
    • Histórico do Flow Metric
      Pro
    • Tópicos
      Pro
    • Caçador de Grupinhos
      Pro
  • Backlinks em Massa
    • Gerador de Palavra-chave
    • Keyword Checker
    • Search Explorer
      Pro
  • Verificador de Vizinhança
    Pro
    • Fusão de Índice
      Pro
    • Disputa de Link Profile
      Pro
    • Links Recíprocos
      Pro
    • Solo Links
      Pro
    • Relatório em pdf
      Pro
    • Typo Domain
      Pro
  • Enviar URLs
    • Summary
      Pro
    • Similar Profiles
      Pro
    • Profile Backlinks
      Pro
    • Attributions
      Pro
  • Custom Reports
    Pro
    • Começar
    • Verificador de Backlink
    • Majestic Million
    • Plugins Majestic
    • Google Sheets
    • Post Popularity
    • Social Explorer
    • Começar
    • Ferramentas
    • Assinaturas e Fatura
    • Perguntas frequentes
    • Glossário
    • Vídeos Explicativos
    • API Reference Guide Link externo
    • Entre em Contato
    • Mensagens
    • The Company
    • Guia de Estilo
    • Termos e Condições
    • Política de Privacidade
    • RGPD
    • Entre em Contato
    • SEO in 2025
    • The Majestic SEO Podcast
    • All Podcasts
    • What is Trust Flow?
    • Guias de link building
  • Blog Link externo
    • English
    • Deutsch
    • Español
    • Français
    • Italiano
    • 日本語
    • Nederlands
    • Polski
    • Português
    • 中文

Build your own LLM tools to free you from boring work

Gus Pelogia

Like other proponents of AI, Gus Pelogia from Indeed encourages you to free yourself from busy work and get to the bits that you care about and, for really specific tasks, he suggests making your own tools.

@pelogia    
Gus Pelogia 2025 podcast cover with logo
More SEO in 2025 YouTube Podcast Playlist Link Spotify Podcast Playlist Link Audible Podcast Playlist Link Apple Podcast Playlist Link

Build your own LLM tools to free you from boring work

Gus says: “Use LLMs to build little SEO tools that help you with analysis and boring work so you can spend your time looking at outcomes.”

What simple SEO tools are you talking about building?

“I have two examples. The first is that I needed to find a way to map related pages at scale. Normally, you can go page by page, open an article, look at which other articles you have on that topic, and start mapping them together. However, the larger the website, the more pages you have. Suddenly you have a very manual task that you have to run through.

Just playing with ChatGPT (and I assume similar tools will give you similar things), I asked for a Python script to do that calculation and find similar pages for me – and I got a tool that works.

As a second example, I wanted to find out the month that a page had the most and least traffic. Instead of trying to find out what happened on each page for each month and manually going through Google Analytics, I just uploaded all the data into a sheet and the tool gave me an export of the findings that said which page it was, and which were the best and worst months.

Then, you can go into more detail about why it happened, and what happened in that month. You can compare keyword positions or look into search volume to see if there’s a decrease. However, some of that work of identifying when something happened has already been done for you. You’re ahead of the game and focusing on the outcomes and why this happened, not just collecting data to start the analysis.”

Why should SEOs build these sorts of tools by themselves?

“There are a lot of tools out there, but you might need things that are more specific. It also makes your life a little bit easier.

To help explain how it can work, I’ll walk you through the whole process I used to find those related articles more easily in more detail. I started in Screaming Frog, which has a connection with ChatGPT. You need to get an API key and buy the credits, but a few pounds worth will be more than enough for thousands of pages.

First, in Screaming Frog, I did a crawl that also extracts embeddings (which are just transforming the words into numbers). It will give you an export that shows each page and all the embeddings that exist on those pages. The export will be full of very long numbers, which you can transform later.

Then, I went to ChatGPT and asked for a Python script that would look at embeddings and calculate the closest similarity between them, then give me 5 pages that are related to each other.

With the vector embeddings, you’re going to get those numbers, and a cosine similarity calculation will measure how close these numbers are to each other. The output you get from the tool shows which pages are most closely related to each other based on all the words that exist on the page. I’m not just looking at titles or descriptions, I’m looking at the universe of words that exist on page A and the universe of words that exist on pages B, C, and D.

In this case, I asked it to give me the 5 pages that are most closely related to the initial page, excluding the page itself from this calculation. I’m not a coder, so I asked ChatGPT to make a Python script that would consider cosine similarity and work on Google Colab, which is a platform that allows you to write and execute Python code.

I went back to ChatGPT and said, ‘Give me a Python script that works on Google Colab and I will give you a list of pages. Column 1 is called ‘Page’, and Column 2 is called ‘Embeddings’. Give me the 5 pages that are closest to my initial page.’ Once I uploaded this sheet onto Google Colab, I didn’t need to do much configuration. You don’t need to understand how to code. You’re literally copying and pasting from one place to another, and it will open up a section where you can upload your sheet.

Once you upload the sheet, there’s a calculation and you can ultimately download an output sheet that shows the source page and the 5 pages that are most closely related to that based on the list that I uploaded.

There are a lot of concepts here and I’m still learning a lot of them, but I know it works. I’ve done that to find pages that are related to each other, and I’ve done that to find the peak time in terms of traffic for a page.

Say you’re looking at 5,000 pages that all lost traffic, and you want to know when they started to lose traffic – when they were at their best versus now. You can give ChatGPT the keyword that you’re looking at. It’s automating part of that work.

I’m still going to keyword tools to compare the best time to now, to understand what happened. However, I don’t need to go to Google Analytics or another tool to find when that best time was or which month that page performed best. When you get into hundreds of pages, you save a lot of time.

The main idea is that you can use LLMs to write these pseudo-codes to do the boring tasks for you.”

What were you trying to discover when you were looking for related pages?

“In my case, I just wanted to add internal links. This was a way to easily find lots of pages. You can automate the process of adding the links, and talk with your engineers to do a bulk update.

I still look at the output to see whether or not the pages are actually related. Does it make sense in a user journey? When they finish this article, would that be the next step? It’s not perfect. You’re not going to blindly go ahead with whatever the tool gives you, but it’s much easier to spot-check. Do these titles make sense? Are these part of a normal journey that people would follow when they’re doing this?

If you’re in e-commerce, they might not want to just see 20 different headphones; they might want to see something different. There are ways to play with the code and prompt the tools to adapt to the things you need.”

Why is a Python script important?

“It’s just what you can use in Google Colab. You could probably use different types of scripts for different types of tools. This was just the process that I found. It’s very good for this kind of task.

I know how to read HTML, CSS, JavaScript, etc. However, if you tell me that something is broken and it’s not working, I have very little chance of fixing that. I managed to use LLMs to write code for me and the code works, even though I don’t know how to do code myself.”

Are you just using ChatGPT?

“I mostly use ChatGPT. I’ve done some troubleshooting with Gemini, which is connected to Google Colab. If you put a piece of code on Google Colab and it says that something’s broken so it can’t run the code, you can ask Gemini to help you fix it.

It took around 2 or 3 prompts and, with some back and forth, it eventually gave me the code that would do exactly what I needed.”

Should every SEO be doing this?

“Potentially, yes. It doesn’t need to be technical. One of my use cases was also looking at the peak time of a page – when it was trending the highest. Then I moved to keyword and SERP analysis. It wasn’t really a technical activity, but it saved me a lot of time.

I needed to look into thousands of pages, and using the tool meant that I didn’t need to go into every single screen on Google Analytics to find out when it happened. It had already done some of that work.

I’m sure there are plenty of other ways to automate things like this as well. Every SEO who is doing things that might be repetitive or boring should at least give it a try to see if you can automate at least part of that process.”

How did you decide what to automate first?

“Whatever challenge is coming to you right now. When I started looking at peak times, it was a manual process. After 5 or 6 pages of copying and pasting and making notes on a spreadsheet, half an hour had passed. I looked at the huge list I had to complete and realised that I was going to spend days doing this.

Can you do it in a better way? You want to get to the good part. You want to find out why those pages are not performing as they performed before, or why they’re performing so well versus a few months ago. That’s the really interesting part.

You’re not going to go back to your client or your manager and say, ‘I opened Google Analytics 500 times and loaded all these pages.’ They want to know what happened and why this is trending up or down. It frees up time so you can talk about the outcomes and not just copy things onto a sheet.”

If an SEO is struggling for time, what should they stop doing right now so they can spend more time doing what you suggest in 2025?

“Stop doing manual work, if you can automate things. This universe of LLMs is here to stay, whether you’re happy with it or not. You might as well embrace the things that you can embrace with it.

With that mapping task, it would have taken months for an editor to go through each page one by one. Instead of doing that manually, it took me two days to go over 20,000 pages. Someone is still checking them, but it’s much easier to start with a draft that you can work from. If something looks very off, then you go through it manually, check it, and replace things. In my experience, though, they were mostly in the right direction.

Automate the things that you can. If you don’t already have a tool to do what you need, give it a try and save yourself a bit of time.”

Gus Pelogia is Senior SEO Product Manager at Indeed, and you can find him over at GusPelogia.com.

@pelogia    

Also with Gus Pelogia

Gus Pelogia 2024 podcast cover with logo
SEO in 2024
Start thinking more like a product manager

Montse recommended learning from others, and Gus Pelogia from Indeed certainly agrees. In particular, he says that you can improve your impact by taking inspiration from how product managers operate.

Gus Pelogia 2023 podcast cover with logo
SEO in 2023
Get more buy-in from stakeholders
Gus Pelogia recommends that SEOs invest more time in 2023 getting the buy-in that they need by communicating with stakeholders. That will give your projects a chance to actually work out in the way that you hope.
Majestic SEO Podcast - the Majestic SEO podcast cover
Majestic SEO Podcast
#33: How to win an SEO Award
Would you like to elevate your SEO work to the next level? Or do you feel that you‘re already doing great work, but going unnoticed? Join our guests as they give first-rate hints, tips and advice on How to Win an SEO Award.
Gus Pelogia 2022 podcast cover with logo
SEO in 2022
Brand will become a more important part of the user journey, as well as Google's understanding of your company

Gus implores you to incorporate brand building as part of your SEO activities, to maximize the number of clicks you receive from the SERP.

Choose Your Own Learning Style

Webinar iconVideo

If you like to get up-close with your favourite SEO experts, these one-to-one interviews might just be for you.

Watch all of our episodes, FREE, on our dedicated SEO in 2025 playlist.

youtube Playlist Icon

Podcast iconPodcast

Maybe you are more of a listener than a watcher, or prefer to learn while you commute.

SEO in 2025 is available now via all the usual podcast platforms

Spotify Apple Podcasts Audible

Book iconBook

This is our favourite. Sometimes it's better to sit and relax with a nice book.

The best of our range of interviews is available right now as a physical copy and eBook.

Amazon US Amazon UK

Don't miss out

Opt-in to receive email updates.

It's the fastest way to find out more about SEO in 2025.


Nós podemos melhorar essa página para você? Conte pra gente

Fresh Index

URLs únicas rastreadas 325.014.171.279
URLs únicas encontradas 812.435.234.331
Período 21 fev. 2025 até 21 jun. 2025
Última atualização 1 hora 49 minutos atrás

Historic Index

URLs únicas rastreadas 4.502.566.935.407
URLs únicas encontradas 21.743.308.221.308
Período 06 jun. 2006 até 26 mar. 2024
Última atualização 03 mai. 2024

REDES SOCIAIS

  • LinkedIn
  • YouTube
  • Facebook
  • Bluesky
  • Twitter
  • Blog Link externo

EMPRESA

  • Pontuação Flow Metric
  • Sobre
  • Termos e Condições
  • Política de Privacidade
  • RGPD
  • Entre em Contato

FERRAMENTAS

  • Planos e Preços
  • Site Explorer
  • Comparar domínios
  • Backlinks em Massa
  • Search Explorer
  • Developer API Link externo

MAJESTIC PARA

  • Link Context
  • Verificador de Backlink
  • Profissionais SEO
  • Analistas de Mídia
  • Influencer Discovery
  • Empresa Link externo

PODCASTS & PUBLICATIONS

  • The Majestic SEO Podcast
  • SEO in 2025
  • SEO em 2024
  • SEO em 2023
  • SEO em 2022
  • All Podcasts
top ^