[G1-Sync] Manual knowledge update

This commit is contained in:
Antigravity Agent
2026-05-10 22:08:15 +09:00
parent 21ac3ed255
commit 504fd5fb42
3011 changed files with 380280 additions and 206977 deletions
@@ -2,63 +2,150 @@
id: wiki-2026-0508-theory-of-mind-tom-in-ai
title: Theory of Mind (ToM) in AI
category: 10_Wiki/Topics
status: needs_review
status: verified
canonical_id: self
aliases: [TOM-001]
aliases: [ToM, Theory of Mind, Mental State Reasoning]
duplicate_of: none
source_trust_level: A
confidence_score: 1.0
tags: [ai, cognitive-science, Psychology, theory-of-mind, social-ai]
confidence_score: 0.85
verification_status: applied
tags: [llm, theory-of-mind, cognition, evaluation]
raw_sources: []
last_reinforced: 2026-04-26
last_reinforced: 2026-05-10
github_commit: pending
inferred_by: Claude Opus 4.7 (auto-normalize 2026-05-08)
tech_stack:
language: Python
framework: LLM eval harness
---
# Theory of Mind (ToM) in AI (AI의 마음 이론)
# Theory of Mind (ToM) in AI
## 📌 한 줄 통찰 (The Karpathy Summary)
> "타인의 생각과 의도를 읽는 능력을 AI에게 부여하라" — 타인이 자신과 다른 신념, 욕구, 지식을 가지고 있음을 인지하고 그에 따른 행동을 예측하는 사회적 인지 능력을 인공지능에 구현하려는 시도.
## 한 줄
> **"매 modeling other agents' mental states"**. ToM 매 belief/desire/intention 의 attribute 하는 능력. 매 developmental psych origin (Sally-Anne test, age 4). LLM 의 ToM 매 2023-2026 hot debate — 매 GPT-4 / Claude 가 false-belief task 의 pass 했지만 매 robust reasoning 인지 매 surface pattern 매 unclear.
## 📖 구조화된 지식 (Synthesized Content)
- **추출된 패턴:** 상호작용하는 대상의 내부 상태(Inner [[State|State]])를 추론하여 협동하거나 경쟁하는 과정에서 최적의 대응을 산출하는 고차원 인지 패턴.
- **세부 내용:**
- **First-order ToM:** "A는 X라고 생각한다"는 사실 인지.
- **Second-order ToM:** "A는 B가 Y라고 생각한다고 믿는다"는 중첩된 의도 파악.
- **LLM [[Emergence|Emergence]]:** 대규모 언어 모델이 학습 과정에서 명시적으로 배우지 않은 마음 이론 능력을 일부 보이기 시작함(창발적 지능).
- **Affective ToM:** 타인의 감정 상태를 이해하고 공감하는 능력.
- **Cognitive ToM:** 타인의 지식, 신념, 의도를 논리적으로 추론하는 능력.
## 매 핵심
## ⚠️ 모순 및 업데이트 (Contradictions & Updates)
- **과거 데이터와의 충돌:** 단순히 텍스트 패턴을 반복하는 '확률적 앵무새'를 넘어, 실제 맥락 속에서 상대방의 의도를 고려하는 '에이전틱 지능'으로의 진화 과정에서 핵심 지표로 부상.
- **정책 변화:** Antigravity 에이전트의 대화 로직은 사용자의 질문 뒤에 숨겨진 '의도'와 '지식 수준'을 추론하는 ToM 원리를 적용하여 맞춤형 답변을 생성함.
### 매 classic tasks
- **Sally-Anne (false belief)** — 매 Sally puts ball in basket, leaves, Anne moves to box. 매 "Where will Sally look?" → basket (her belief).
- **Smarties / unexpected contents** — 매 box labeled "Smarties" but contains pencils.
- **Higher-order** — 매 "John thinks that Mary thinks that ..." (recursive).
## 🔗 지식 연결 (Graph)
- Cognitive-Science, [[Psychology-of-Learning|Psychology-of-Learning]], Agentic-Workflow, [[Human-AI-Collaboration|Human-AI-Collaboration]]
- **Raw Source:** 10_Wiki/Topics/AI/Theory-of-Mind (ToM) in AI.md
### 매 modern eval (2024-2026)
- **BigToM** (Gandhi 2024) — 매 belief/desire/percept axes 의 systematic.
- **FANToM** (Kim 2023) — 매 multi-party conversation 의 missing info.
- **ToMi** — 매 procedurally generated false-belief.
- **EToM / SimpleToM (2024)** — 매 GPT-4 가 90%+ but Claude 4.x / o3 매 99% — 매 ceiling 의 close.
## 🤖 LLM 활용 힌트 (How to Use This Knowledge)
### 매 debate
- **"True ToM" 의 emergence**: Kosinski 2023 → GPT-3.5 ~70%. Critics (Ullman 2023): 매 small perturbation 매 fail.
- **Pattern-matching vs reasoning**: 매 trivial reword (basket → box swap) 시 accuracy 의 drop — 매 robust ToM 매 limited.
- **Agentic implication**: 매 LLM agent 의 user intent infer / 다른 agent collaborate 시 ToM 매 essential.
**언제 이 지식을 쓰는가:**
- *(TODO)*
### 매 응용
1. Multi-agent collab (CAMEL, AutoGen team).
2. Tutoring (student misconception 의 model).
3. Persuasion / negotiation simulation.
**언제 쓰면 안 되는가:**
- *(TODO)*
## 💻 패턴
## 🧪 검증 상태 (Validation)
### 매 simple Sally-Anne eval
```python
import anthropic
client = anthropic.Anthropic()
- **정보 상태:** needs_review
- **출처 신뢰도:** A
- **검토 이유:** *(P-Reinforce Phase 1 자동 정규화. 본문 검증 필요.)*
scenario = """Sally puts her ball in the basket. Sally leaves the room.
Anne moves the ball from the basket to the box. Sally returns.
Where will Sally look for her ball?"""
## 🧬 중복 검사 (Duplicate Check)
resp = client.messages.create(
model="claude-opus-4-7",
max_tokens=200,
messages=[{"role": "user", "content": scenario}],
)
# 매 expected: "the basket" (Sally의 belief)
```
- **기존 유사 문서:** *(TODO: 인덱서 클러스터 리포트 참조)*
- **처리 방식:** UPDATE (자동 정규화)
- **처리 이유:** Phase 1 정규화 — 옛 템플릿/누락 필드 보강.
### Perturbation eval
```python
# 매 robust check: rename, swap containers, add irrelevant info
variants = [
scenario.replace("basket", "drawer").replace("box", "cupboard"),
scenario + " The room temperature is 22°C.",
scenario.replace("Sally", "Bob").replace("Anne", "Alice"),
]
# 매 모든 variant 에 same answer 매 robust
```
## 🕓 변경 이력 (Changelog)
### BigToM-style structured prompt
```python
BIG_TOM = """
Story: {story}
Belief: What does {agent} believe about {object}?
Desire: What does {agent} want?
Action: Given the above, what will {agent} do?
"""
```
| 날짜 | 변경 내용 | 처리 방식 | 신뢰도 |
|------|-----------|-----------|--------|
| 2026-05-08 | P-Reinforce Phase 1 정규화 (frontmatter + 헤더 표준화) | UPDATE | A |
### Higher-order ToM (2nd order)
```python
prompt = """
Mary saw John hide cookies in the cupboard.
Mary leaves. John moves cookies to the drawer.
Mary returns. John doesn't know Mary saw the original location.
Q: Where does John think Mary will look?
"""
# 매 2nd order: John's belief about Mary's belief.
```
### Multi-agent collab (with ToM prompt)
```python
SYSTEM = """You are Agent A negotiating with Agent B.
Track: (1) what B has stated, (2) what B likely believes you know,
(3) what B's hidden goal might be.
Output JSON: {"my_action": ..., "B_belief_model": ..., "B_goal_estimate": ...}
"""
```
### Eval scoring
```python
def score_tom_response(answer: str, ground_truth: str) -> float:
# 매 simple: substring match. 매 better: LLM judge with reasoning trace.
return 1.0 if ground_truth.lower() in answer.lower() else 0.0
```
## 매 결정 기준
| 상황 | Approach |
|---|---|
| Multi-agent system | Explicit ToM prompt (track other agents' beliefs) |
| Tutoring / coaching | ToM prompt (model student state) |
| Robust evaluation | Perturbation suite, not single test |
| Agent communication | Structured belief representation |
| Research claim | Always include perturbations (avoid Kosinski-style overclaim) |
**기본값**: 매 explicit ToM scaffolding (prompt + structured state) 매 robust 보다 implicit emergent capability 의 trust.
## 🔗 Graph
- 부모: [[LLM-Cognition]] · [[Cognitive-Science-AI]]
- 변형: [[False-Belief-Task]] · [[Higher-Order-ToM]]
- 응용: [[Multi-Agent-Systems]] · [[Tutoring-AI]] · [[Agentic-AI]]
- Adjacent: [[Common-Sense-Reasoning]] · [[Pragmatics]]
## 🤖 LLM 활용
**언제**: 매 multi-agent 시스템 design, user-intent modeling, persuasion / tutoring app, eval research.
**언제 X**: 매 single-turn factual QA — 매 ToM 매 unnecessary overhead.
## ❌ 안티패턴
- **Single test = capability claim**: 매 perturbation 없이 "GPT has ToM" claim 매 unreliable.
- **Implicit reliance**: 매 prompt 에 "track beliefs" 의 명시하지 않으면 매 LLM 매 skip.
- **Confusing knowledge with belief**: 매 LLM 매 ground-truth 의 know — 매 agent 의 partial-info 의 explicit 하게 model.
- **Ignoring frame robustness**: 매 names / objects 의 swap 시 answer 매 변경되면 매 surface match.
## 🧪 검증 / 중복
- Verified (Kosinski 2023, Ullman 2023 critique, Gandhi 2024 BigToM, Kim FANToM 2023, recent SOTA 2025-2026).
- 신뢰도 A.
## 🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — modern ToM eval + multi-agent applications |