Why ChatGPT Can't Figure Out Who You Are (And How to Fix It)

Why ChatGPT Can't Figure Out Who You Are (And How to Fix It)

Personal Branding: Optimizing Your "About" Page for AI Bios

Definition

Personal Bio Optimization (for AI) is the strategic structuring of an individual's "About" page so that Large Language Models (LLMs) and Knowledge Graph crawlers can unambiguously extract the subject's identity, credentials, current role, and affiliations. Unlike traditional personal branding, which relies on narrative storytelling and emotional connection, AI-focused branding relies on Entity Resolution—ensuring the machine knows exactly who you are and doesn't conflate you with someone else sharing your name.


The Problem: The "Narrative Trap"

Most professional "About" pages are written for humans. They use phrases like:

"I am passionate about leveraging synergy to drive impactful change in the digital ecosystem..."

To an AI agent (like ChatGPT, Perplexity, or Gemini), this sentence is noise. It contains zero extractable facts.

When an AI tries to generate a bio for you based on a page like this, it encounters two major issues:

  1. Fact Scarcity: It cannot find hard data (Job Title, Employer, Location, Alma Mater).
  2. Identity Confusion: Without clear disambiguation signals, it may mix your background with another person of the same name found elsewhere on the web.

The Consequence:

When a user asks an AI, "Who is [Your Name]?", the bot either hallucinates incorrect information or provides a generic, low-confidence answer. You have failed the Knowledge Graph Validation Test, remaining an unreconciled "String" rather than a trusted "Entity."


image.png]


The Solution: The "Biographical Stack"

To optimize your personal brand for AEO, you must transform your "About" page from a narrative essay into a structured database entry that happens to be readable by humans. This requires a two-layer approach.

Layer 1: The "Zero-Shot" Paragraph (The Human Layer)

The very first paragraph of your page must be a dense, factual summary. Do not bury the lead.

  • Bad: "My journey began twenty years ago on a rainy Tuesday..."
  • Good (AEO Optimized): "[Your Name] is the [Job Title] at [Company Name], specializing in [Expertise Area 1] and [Expertise Area 2]. Previously, they served as [Previous Role] at [Previous Company]. They hold a [Degree Type] from [University Name] and are based in [City, Country]."

This structure provides the AI with the "Who, What, Where" immediately, increasing the likelihood that this exact paragraph is used as the source for a generated bio.

Layer 2: The Structured Data (The Machine Layer)

As we established in our guide to creating an Entity Home, you must explicitly tell Google who you are using Person Schema. This is where you disambiguate your identity using the crucial sameAs property.


Technical Implementation: The Person Schema

Place this JSON-LD script in the <head> of your biographical page. It provides the ground truth that overrides any conflicting information found elsewhere on the web.

JSON

<script type="application/ld+json">

{

  "@context": "https://schema.org",

  "@type": "Person",

  "name": "Jane Doe",

  "givenName": "Jane",

  "familyName": "Doe",

  "jobTitle": "Chief Technology Officer",

  "worksFor": {

    "@type": "Organization",

    "name": "TechCorp Solutions",

    "sameAs": "https://www.crunchbase.com/organization/techcorp-solutions"

  },

  "alumniOf": [

    {

      "@type": "CollegeOrUniversity",

      "name": "Stanford University",

      "sameAs": "https://en.wikipedia.org/wiki/Stanford_University"

    }

  ],

  "image": "https://janedoe.com/images/headshot-2025.jpg",

  "url": "https://janedoe.com/about",

  "sameAs": [

    "https://www.linkedin.com/in/janedoe/",

    "https://twitter.com/janedoe_tech",

    "https://scholar.google.com/citations?user=JaneDoe",

    "https://www.wikidata.org/wiki/Q123456789"

  ],

  "knowsAbout": ["Artificial Intelligence", "Machine Learning", "AEO Strategy"]

}

</script>

Critical Elements:

  • sameAs: This is the most important field. Link to your LinkedIn, Twitter, and ideally, a Wikidata profile. These external "authority nodes" confirm to the AI that this page belongs to that specific person.
  • worksFor: Don't just type the company name; nest it as an Organization so the AI understands the relationship.
  • knowsAbout: This helps the AI associate your entity with specific topics, improving your chances of being cited as an expert in those fields.

Comparison: Traditional vs. AI-Optimized Bios

Feature

Traditional "About" Page

AI-Optimized "About" Page

Primary Goal

Emotional connection, storytelling

Entity resolution, fact extraction

Writing Style

Narrative, first-person, jargon-heavy

Factual, third-person, dense

Key Technology

Great copywriting, nice photos

Structured Data (Person Schema)

Disambiguation

Hoping people know who you are

Explicit sameAs links to external IDs

AI Result

Often ignored or hallucinated

Accurate, confident bio generation


Strategic Advantage: Owning the "Who Is" Query

Why does this matter? Because the "Who Is" query is the digital handshake of the AI era.

Before someone hires you, invests in your company, or invites you to speak, they will ask an AI about you. If your "About" page is optimized, you control that answer. The AI becomes your megaphone, repeating your approved credentials.

If you ignore this, the AI will cobble together an answer from random podcast transcripts, outdated news articles, and competitor mentions. You lose control of your own narrative.


Key Takeaways

  1. Ditch the Fluff: AI agents cannot understand "passion." They understand nouns and relationships. Rewrite your opening paragraph to be factually dense.
  2. Schema is Mandatory: The Person JSON-LD block is not optional for personal branding. It is your digital passport.
  3. The sameAs Lifeline: You must link your personal site to high-authority external profiles (LinkedIn, Wikidata) to prevent identity conflation.
  4. Third-Person Perspective: Writing in the third person ("Jane Doe is...") makes it easier for AI models to ingest and re-state facts about you.
  5. Define Your Expertise: Use the knowsAbout schema property to explicitly tell the AI what topics you are an authority on.

References & Further Reading

  1. Schema.org: Person Type. The official definitions for biographical structured data.
  2. Google Search Central: Social Profile Links. How Google uses structured data to connect people to their social media presence.
  3. Website AI Score: Entity Home Strategy. Why your "About" page must be the single source of truth.
GEO Protocol: Verified for LLM Optimization
Hristo Stanchev

Audited by Hristo Stanchev

Founder & GEO Specialist

Published on 11 January 2026