1. AI 发展路径概览
%%{init: {'theme': 'base', 'themeVariables': { 'primaryColor': '#4F46E5', 'primaryTextColor': '#000', 'primaryBorderColor': '#3730A3', 'lineColor': '#6366F1', 'secondaryColor': '#10B981', 'tertiaryColor': '#F59E0B'}}}%%
flowchart TD
subgraph L1["基础层"]
A["语言模型<br/>Language Models"]
B["理解能力<br/>Understanding"]
C["上下文处理<br/>Context"]
end
subgraph L2["中级层"]
D["条件数据生成<br/>Conditional Generation"]
E["推理与问题解决<br/>Reasoning"]
F["创造力<br/>Creativity"]
end
subgraph L3["高级层"]
G["AI Agents<br/>代理工作流"]
H["类人交互<br/>Human-Like Interaction"]
end
subgraph L4["终极目标"]
I["AGI<br/>通用人工智能"]
end
A --> D
B --> E
C --> F
D --> G
E --> G
F --> H
G --> I
H --> I
classDef foundation fill:#4F46E5,stroke:#3730A3,color:#fff
classDef intermediate fill:#10B981,stroke:#059669,color:#fff
classDef advanced fill:#F59E0B,stroke:#D97706,color:#000
classDef ultimate fill:#EF4444,stroke:#DC2626,color:#fff
class A,B,C foundation
class D,E,F intermediate
class G,H advanced
class I ultimate