Skip to content

Commit ced467c

Browse files
committed
update reamde info about templates
1 parent 993b371 commit ced467c

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Choose an agent and follow its README for setup and deployment:
1515
- **[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.
1616
- **[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.
1717
- **[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.
1819

1920
## Deployment Options
2021
Agents in this repository can support two deployment modes:
@@ -41,7 +42,8 @@ Agentic-Starter-Kits/
4142
│ │ └── llamaindex_websearch_agent/ # LlamaIndex web search agent
4243
│ │ └── openai_responses_agent/ # OpenAI Responses API (no framework)
4344
│ └── 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)
4547
├── run_llama_server.yaml # Llama Stack server configuration
4648
├── utils.py # Shared utilities
4749
└── README.md # This file

0 commit comments

Comments
 (0)