You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,7 @@ Choose an agent and follow its README for setup and deployment:
15
15
-**[LlamaIndex WebSearch](./agents/base/llamaindex_websearch_agent/README.md)** – Agent built on LlamaIndex that uses a web search tool to query the internet and use the results in its answers.
16
16
-**[OpenAI Responses](./agents/base/openai_responses_agent/README.md)** – Minimal agent with no framework: only the OpenAI Python client and an Action/Observation loop with tools. Use with OpenAI or any compatible API.
17
17
-**[LangGraph Agentic RAG](./agents/community/langgraph_agentic_rag/README.md)** – RAG agent that indexes documents in a vector store (Milvus) and retrieves relevant chunks to augment the LLM’s answers with your own data.
18
+
-**[LangGraph ReAct with Database Memory](./agents/community/langgraph_react_with_database_memory/README.md)** – ReAct agent with PostgreSQL-backed conversation memory. Full chat history is persisted in the database while a FIFO sliding window keeps only the last N messages in the LLM context. Built with LangGraph and `create_agent` middleware.
18
19
19
20
## Deployment Options
20
21
Agents in this repository can support two deployment modes:
@@ -41,7 +42,8 @@ Agentic-Starter-Kits/
41
42
│ │ └── llamaindex_websearch_agent/ # LlamaIndex web search agent
42
43
│ │ └── openai_responses_agent/ # OpenAI Responses API (no framework)
43
44
│ └── community/
44
-
│ └── langgraph_agentic_rag/ # RAG agent with Milvus vector store
45
+
│ ├── langgraph_agentic_rag/ # RAG agent with Milvus vector store
46
+
│ └── langgraph_react_with_database_memory/ # ReAct agent with PostgreSQL memory (FIFO)
45
47
├── run_llama_server.yaml # Llama Stack server configuration
0 commit comments