Files
nexus/wiki/concepts/GenAI.md

46 lines
1.5 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
title: "GenAI"
type: concept
tags: [genai, generative-ai, content-generation]
sources: ["Designing for Agentic AI.md"]
last_updated: 2026-04-16
---
## Definition
Generative AI生成式AI擅长创建新内容文本、图像、音乐等的AI系统。作为"创意助手"能生成创意或翻译语言。
## Key Characteristics
- 被动响应:等待用户输入后生成内容
- 内容创作:擅长生成文本、图像、音乐等创意内容
- 知识截止:基于训练数据,知识有时效性限制
- 无行动能力:仅能"思考",无法执行外部操作
## Comparison with Agentic AI
| 维度 | GenAI | Agentic AI |
|------|-------|------------|
| 核心能力 | 内容创作 | 行动执行 |
| 交互模式 | 被动响应用户输入 | 主动预判并自主行动 |
| 知识状态 | 训练数据截止日期 | 可通过RAG获取实时信息 |
| 执行能力 | 无 | 有API调用、代码执行等|
| 典型场景 | 写作、摘要、翻译、图像生成 | 任务自动化、复杂工作流 |
## Relationship to Other Concepts
- [[Agentic-AI]]GenAI是Agentic AI的内容生成基础Agentic AI = GenAI + 行动框架
- [[LLM]]LLM是GenAI的核心技术架构之一
- [[RAG]]RAG为GenAI提供实时信息获取能力解决知识时效性问题
## Examples
- 写作助手:生成诗歌、文章
- 图像生成Midjourney、Stable Diffusion、DALL-E
- 音乐生成Suno AI
- 代码生成Claude Code、Cline
## Aliases
- 生成式AI
- 生成式人工智能
- Generative AI
## Sources
- [[Designing-for-Agentic-AI]]