Docs Update Images (#3072)

This commit is contained in:
Antaripa Saha
2025-07-01 13:06:30 +05:30
committed by GitHub
parent b79bfb7c1e
commit 6c69599db9
5 changed files with 14 additions and 15 deletions

View File

@@ -246,24 +246,23 @@
"icon": "plug", "icon": "plug",
"pages": [ "pages": [
"integrations", "integrations",
"integrations/agentops",
"integrations/vercel-ai-sdk",
"integrations/flowise",
"integrations/crewai",
"integrations/autogen",
"integrations/langchain", "integrations/langchain",
"integrations/langgraph", "integrations/langgraph",
"integrations/llama-index", "integrations/llama-index",
"integrations/langchain-tools",
"integrations/dify",
"integrations/mcp-server",
"integrations/livekit",
"integrations/elevenlabs",
"integrations/pipecat",
"integrations/agno", "integrations/agno",
"integrations/autogen",
"integrations/crewai",
"integrations/mastra",
"integrations/vercel-ai-sdk",
"integrations/livekit",
"integrations/pipecat",
"integrations/elevenlabs",
"integrations/flowise",
"integrations/langchain-tools",
"integrations/agentops",
"integrations/keywords", "integrations/keywords",
"integrations/raycast", "integrations/dify",
"integrations/mastra" "integrations/raycast"
] ]
} }
] ]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 50 KiB

After

Width:  |  Height:  |  Size: 184 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 285 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 285 KiB

After

Width:  |  Height:  |  Size: 196 KiB

View File

@@ -20,7 +20,7 @@ Most current agents are stateless: they process a query, generate a response, an
Stateful agents, powered by Mem0, are different. They retain context, recall what matters, and behave more intelligently over time. Stateful agents, powered by Mem0, are different. They retain context, recall what matters, and behave more intelligently over time.
<Frame caption="Stateless vs Stateful Agent"> <Frame>
<img src="../images/stateless-vs-stateful-agent.png" /> <img src="../images/stateless-vs-stateful-agent.png" />
</Frame> </Frame>
@@ -29,7 +29,7 @@ Stateful agents, powered by Mem0, are different. They retain context, recall wha
Mem0 sits alongside your retriever, planner, and LLM. Unlike retrieval-based systems (like RAG), Mem0 tracks past interactions, stores long-term knowledge, and evolves the agents behavior. Mem0 sits alongside your retriever, planner, and LLM. Unlike retrieval-based systems (like RAG), Mem0 tracks past interactions, stores long-term knowledge, and evolves the agents behavior.
<Frame caption="Memory in Agent Architecture"> <Frame>
<img src="../images/memory-agent-stack.png" /> <img src="../images/memory-agent-stack.png" />
</Frame> </Frame>