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
+22-25Lines changed: 22 additions & 25 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,6 @@
1
1
<divstyle="text-align: center;">
2
2
3
3

4
-
5
4
# Agentic Starter Kits
6
5
7
6
</div>
@@ -13,19 +12,16 @@ deploy to Red Hat OpenShift. Each agent has step-by-step docs.
13
12
14
13
## Agents
15
14
16
-
Choose an agent and follow its README for setup and deployment:
15
+
Agents are organized by framework. Pick one and follow its README:
17
16
18
-
-**[LangGraph ReAct](./agents/base/langgraph_react_agent/README.md)** – General-purpose agent using a ReAct loop: it
19
-
reasons and calls tools (e.g. search, math) step by step. Built with LangGraph and LangChain.
20
-
-**[LlamaIndex WebSearch](./agents/base/llamaindex_websearch_agent/README.md)** – Agent built on LlamaIndex that uses a
21
-
web search tool to query the internet and use the results in its answers.
22
-
-**[OpenAI Responses](./agents/base/openai_responses_agent/README.md)** – Minimal agent with no framework: only the
23
-
OpenAI Python client and an Action/Observation loop with tools. Use with OpenAI or any compatible API.
24
-
-**[LangGraph Agentic RAG](./agents/community/langgraph_agentic_rag/README.md)** – RAG agent that indexes documents in
25
-
a vector store (Milvus) and retrieves relevant chunks to augment the LLM’s answers with your own data.
26
-
-**[LangGraph ReAct with Database Memory](./agents/community/langgraph_react_with_database_memory/README.md)** – ReAct
27
-
agent with PostgreSQL-backed conversation memory. Full chat history is persisted in the database while a FIFO sliding
28
-
window keeps only the last N messages in the LLM context. Built with LangGraph and `create_agent` middleware.
17
+
| Framework | Agent | Description |
18
+
|-----------|-------|-------------|
19
+
|**LangGraph**|[ReAct Agent](./agents/langgraph/react_agent/)| General-purpose agent using a ReAct loop: it reasons and calls tools (e.g. search, math) step by step. Built with LangGraph and LangChain. |
20
+
|**LangGraph**|[Agentic RAG](./agents/langgraph/agentic_rag/)| RAG agent that indexes documents in a vector store (Milvus) and retrieves relevant chunks to augment the LLM's answers with your own data. |
21
+
|**LangGraph**|[ReAct + DB Memory](./agents/langgraph/react_with_database_memory/)| 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. |
22
+
|**LlamaIndex**|[WebSearch Agent](./agents/llamaindex/websearch_agent/)| Agent built on LlamaIndex that uses a web search tool to query the internet and use the results in its answers. |
23
+
|**CrewAI**|[WebSearch Agent](./agents/crewai/websearch_agent/)| CrewAI-based agent with a web search tool to query the internet and answer user questions. |
24
+
|**Vanilla Python**|[OpenAI Responses Agent](./agents/vanilla_python/openai_responses_agent/)| Minimal agent with no framework: only the OpenAI Python client and an Action/Observation loop with tools. Use with OpenAI or any compatible API. |
29
25
30
26
## Deployment Options
31
27
@@ -48,18 +44,19 @@ Agents in this repository can support two deployment modes:
0 commit comments