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)
DEFINITION

Personal Bio Optimization (for AI) is the strategic structuring of an individual's "About" page so 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, with phrases like "I am passionate about leveraging synergy to drive impactful change in the digital ecosystem." To an AI agent (ChatGPT, Perplexity, Gemini), this sentence is noise. It contains zero extractable facts.

When an AI tries to generate a bio from a page like this, it hits two problems. Fact scarcity: it can't find hard data (job title, employer, location, alma mater). Identity confusion: without clear disambiguation signals, it may mix your background with another person of the same name found elsewhere on the web.

The Narrative Trap versus the Biographical Stack: a flowery passion-driven About page gives the AI no extractable facts so it hallucinates or conflates identities, while a fact-dense opening paragraph backed by Person schema with sameAs links lets the AI generate a confident, accurate bioNarrative Trap vs Biographical StackThe Narrative Trap"Passionate about leveragingsynergy to drive impact..."0 extractable factsAI reads it as noiseHallucinates or conflates youUnreconciled "String"The Biographical StackLayer 1: fact-dense paragraphWho, what, where, immediatelyLayer 2: Person schemasameAs to LinkedIn, WikidataConfident, accurate bioTrusted "Entity"

The consequence: when a user asks "Who is [your name]?", the bot either hallucinates incorrect information or gives a generic, low-confidence answer. You've failed the Knowledge Graph validation test, remaining an unreconciled "String" rather than a trusted "Entity." This is the personal-brand version of the String-vs-Entity problem.

The Solution: The "Biographical Stack"

Transform your "About" page from a narrative essay into a structured database entry that happens to be readable by humans. This requires two layers.

Layer 1: The "Zero-Shot" Paragraph (the human layer)

The very first paragraph must be a dense, factual summary. Don't 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], specializing in [Expertise 1] and [Expertise 2]. Previously they served as [Previous Role] at [Previous Company]. They hold a [Degree] from [University] and are based in [City, Country]." This gives the AI the who, what, and where immediately, increasing the likelihood that this exact paragraph becomes the source for a generated bio.

Layer 2: The Structured Data (the machine layer)

As established in the guide to creating an Entity Home, 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-LD · the Person entity
<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>

The critical elements: sameAs is the most important field; link to your LinkedIn, Twitter, and ideally a Wikidata profile, since these external authority nodes confirm to the AI that this page belongs to that specific person. worksFor should be nested as an Organization so the AI understands the relationship, not just typed as a name. knowsAbout associates your entity with specific topics, improving your chances of being cited as an expert in those fields.

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

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, and the AI becomes your megaphone, repeating your approved credentials. If you ignore this, the AI cobbles together an answer from random podcast transcripts, outdated news articles, and competitor mentions, and you lose control of your own narrative. The contrarian point: the better your prose reads to a human, the worse it often performs for the machine, because the polish that signals warmth to a reader signals emptiness to a fact extractor.

What does the AI say when someone asks "Who is you"?

Free audit. Checks your fact density, Person schema, and sameAs disambiguation so AI agents describe you accurately instead of guessing.

Audit your bio →

Key Takeaways

  1. Ditch the fluff. AI agents can't 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's your digital passport.
  3. The sameAs lifeline. 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 property to explicitly tell the AI what topics you're an authority on.

References & Further Reading

  1. Schema.org: Person Type. The official definitions for biographical structured data. https://schema.org/Person
  2. Google Search Central: Social Profile Links. How Google uses structured data to connect people to their social media presence. https://developers.google.com/search/docs/appearance/structured-data/social-profile
  3. Website AI Score: Entity Home Strategy. Why your "About" page must be the single source of truth. https://websiteaiscore.com/blog/about-us-page-vs-entity-home
GEO Protocol: Verified for LLM Optimization
Hristo Stanchev

Audited by Hristo Stanchev

Founder & GEO Specialist

Published on January 11, 2026