Files
nexus/wiki/concepts/上下文记忆.md

23 lines
735 B
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: "上下文记忆"
type: concept
tags: [ai, memory, context]
---
## Definition
AI Agent 保留对话历史的能力使其能够理解对话上下文提供连贯且相关的响应。上下文记忆解决了大型语言模型LLM本身无状态的问题。
## Importance
- 增强对话流畅性
- 避免重复询问已提供的信息
- 提供个性化的交互体验
## Implementation in n8n
通过 Memory 节点实现,允许 AI Agent
- 存储对话历史
- 跨轮次检索相关信息
- 维持会话上下文
## Connected Pages
- [[Agentic AI]] — 依赖上下文记忆实现智能交互
- [[N8N Full Tutorial Building AI Agents in 2025 for Beginners!]] — 教程演示如何在 n8n 中添加记忆模块