From 4212a795a05e803bf7eb5382a3a60ad5a55b8b63 Mon Sep 17 00:00:00 2001 From: Eugene Yurtsev Date: Mon, 18 Nov 2024 22:53:19 -0500 Subject: [PATCH] docs[minor]: Fix layout issues in available templates (#2452) --- docs/docs/concepts/template_applications.md | 24 +++++++-------------- 1 file changed, 8 insertions(+), 16 deletions(-) diff --git a/docs/docs/concepts/template_applications.md b/docs/docs/concepts/template_applications.md index 9585c86d4..df8bc5e63 100644 --- a/docs/docs/concepts/template_applications.md +++ b/docs/docs/concepts/template_applications.md @@ -6,22 +6,14 @@ Templates are open source reference applications designed to help you get started quickly when building with LangGraph. They provide working examples of common agentic workflows that can be customized to your needs. -Templates can be accessed via [LangGraph Studio](langgraph_studio.md), or cloned directly from Github. You can download LangGraph Studio and see available templates [here](https://studio.langchain.com/). +Templates can be accessed via [LangGraph Studio (macOS only)](langgraph_studio.md), or cloned directly from Github. You can download LangGraph Studio and see available templates [here](https://studio.langchain.com/). ## Available templates -- **New LangGraph Project**: A simple, minimal chatbot with memory. - - [Python](https://github.com/langchain-ai/new-langgraph-project) - - [JS/TS](https://github.com/langchain-ai/new-langgraphjs-project) -- **ReAct Agent**: A simple agent that can be flexibly extended to many tools. - - [Python](https://github.com/langchain-ai/react-agent) - - [JS/TS](https://github.com/langchain-ai/react-agent-js) -- **Memory Agent**: A ReAct-style agent with an additional tool to store memories for use across conversational threads. - - [Python](https://github.com/langchain-ai/memory-agent) - - [JS/TS](https://github.com/langchain-ai/memory-agent-js) -- **Retrieval Agent**: An agent that includes a retrieval-based question-answering system. - - [Python](https://github.com/langchain-ai/retrieval-agent-template) - - [JS/TS](https://github.com/langchain-ai/retrieval-agent-template-js) -- **Data-enrichment Agent**: An agent that performs web searches and organizes its findings into a structured format. - - [Python](https://github.com/langchain-ai/data-enrichment) - - [JS/TS](https://github.com/langchain-ai/data-enrichment-js) +| Template | Description | Python | JS/TS | +|---------------------------|------------------------------------------------------------------------------------------|------------------------------------------------------------------|---------------------------------------------------------------------| +| **New LangGraph Project** | A simple, minimal chatbot with memory. | [Repo](https://github.com/langchain-ai/new-langgraph-project) | [Repo](https://github.com/langchain-ai/new-langgraphjs-project) | +| **ReAct Agent** | A simple agent that can be flexibly extended to many tools. | [Repo](https://github.com/langchain-ai/react-agent) | [Repo](https://github.com/langchain-ai/react-agent-js) | +| **Memory Agent** | A ReAct-style agent with an additional tool to store memories for use across threads. | [Repo](https://github.com/langchain-ai/memory-agent) | [Repo](https://github.com/langchain-ai/memory-agent-js) | +| **Retrieval Agent** | An agent that includes a retrieval-based question-answering system. | [Repo](https://github.com/langchain-ai/retrieval-agent-template) | [Repo](https://github.com/langchain-ai/retrieval-agent-template-js) | +| **Data-Enrichment Agent** | An agent that performs web searches and organizes its findings into a structured format. | [Repo](https://github.com/langchain-ai/data-enrichment) | [Repo](https://github.com/langchain-ai/data-enrichment-js) |