diff --git a/docs/docs/agents/agents.md b/docs/docs/agents/agents.md index c58895114..acf2aac92 100644 --- a/docs/docs/agents/agents.md +++ b/docs/docs/agents/agents.md @@ -1,3 +1,12 @@ +--- +search: + boost: 2 +tags: + - agent +hide: + - tags +--- + # Agents ## What is an agent? diff --git a/docs/docs/agents/context.md b/docs/docs/agents/context.md index c3854b6dc..2415854c0 100644 --- a/docs/docs/agents/context.md +++ b/docs/docs/agents/context.md @@ -1,3 +1,12 @@ +--- +search: + boost: 2 +tags: + - agent +hide: + - tags +--- + # Context Agents often require more than a list of messages to function effectively. They need **context**. diff --git a/docs/docs/agents/deployment.md b/docs/docs/agents/deployment.md index 83ab585ea..84880f068 100644 --- a/docs/docs/agents/deployment.md +++ b/docs/docs/agents/deployment.md @@ -1,3 +1,12 @@ +--- +search: + boost: 2 +tags: + - agent +hide: + - tags +--- + # Deployment To deploy your LangGraph agent, create and configure a LangGraph app. This setup supports both local development and production deployments. diff --git a/docs/docs/agents/evals.md b/docs/docs/agents/evals.md index 9907c474f..74fdb5a63 100644 --- a/docs/docs/agents/evals.md +++ b/docs/docs/agents/evals.md @@ -1,3 +1,12 @@ +--- +search: + boost: 2 +tags: + - agent +hide: + - tags +--- + # Evals To evaluate your agent's performance you can use `LangSmith` [evaluations](https://docs.smith.langchain.com/evaluation). You would need to first define an evaluator function to judge the results from an agent, such as final outputs or trajectory. Depending on your evaluation technique, this may or may not involve a reference output: diff --git a/docs/docs/agents/human-in-the-loop.md b/docs/docs/agents/human-in-the-loop.md index a59e55f65..8c111e047 100644 --- a/docs/docs/agents/human-in-the-loop.md +++ b/docs/docs/agents/human-in-the-loop.md @@ -1,6 +1,17 @@ +--- +search: + boost: 2 +tags: + - human-in-the-loop + - hil + - agent +hide: + - tags +--- + # Human-in-the-loop -To review, edit and approve tool calls in an agent you can use LangGraph's built-in [human-in-the-loop](../concepts/human_in_the_loop.md) features, specifically the [`interrupt()`][langgraph.types.interrupt] primitive. +To review, edit and approve tool calls in an agent you can use LangGraph's built-in [Human-In-the-Loop (HIL)](../concepts/human_in_the_loop.md) features, specifically the [`interrupt()`][langgraph.types.interrupt] primitive. LangGraph allows you to pause execution **indefinitely** — for minutes, hours, or even days—until human input is received. diff --git a/docs/docs/agents/mcp.md b/docs/docs/agents/mcp.md index 22417ceb4..b09813c08 100644 --- a/docs/docs/agents/mcp.md +++ b/docs/docs/agents/mcp.md @@ -1,3 +1,12 @@ +--- +search: + boost: 2 +tags: + - agent +hide: + - tags +--- + # MCP Integration [Model Context Protocol (MCP)](https://modelcontextprotocol.io/introduction) is an open protocol that standardizes how applications provide tools and context to language models. LangGraph agents can use tools defined on MCP servers through the `langchain-mcp-adapters` library. diff --git a/docs/docs/agents/memory.md b/docs/docs/agents/memory.md index 1cb81164a..81f3801ec 100644 --- a/docs/docs/agents/memory.md +++ b/docs/docs/agents/memory.md @@ -1,3 +1,12 @@ +--- +search: + boost: 2 +tags: + - agent +hide: + - tags +--- + # Memory LangGraph supports two types of memory essential for building conversational agents: diff --git a/docs/docs/agents/models.md b/docs/docs/agents/models.md index f061a50cf..43c7fb45c 100644 --- a/docs/docs/agents/models.md +++ b/docs/docs/agents/models.md @@ -1,3 +1,14 @@ +--- +search: + boost: 2 +tags: + - anthropic + - openai + - agent +hide: + - tags +--- + # Models This page describes how to configure the chat model used by an agent. @@ -66,4 +77,4 @@ agent = create_react_agent( ## Additional resources - [Model integration directory](https://python.langchain.com/docs/integrations/chat/) -- [Universal initialization with `init_chat_model`](https://python.langchain.com/docs/how_to/chat_models_universal_init/) \ No newline at end of file +- [Universal initialization with `init_chat_model`](https://python.langchain.com/docs/how_to/chat_models_universal_init/) diff --git a/docs/docs/agents/multi-agent.md b/docs/docs/agents/multi-agent.md index 5494f42fc..51a35bbac 100644 --- a/docs/docs/agents/multi-agent.md +++ b/docs/docs/agents/multi-agent.md @@ -1,3 +1,12 @@ +--- +search: + boost: 2 +tags: + - agent +hide: + - tags +--- + # Multi-agent A single agent might struggle if it needs to specialize in multiple domains or manage many tools. To tackle this, you can break your agent into smaller, independent agents and composing them into a [multi-agent system](../concepts/multi_agent.md). diff --git a/docs/docs/agents/overview.md b/docs/docs/agents/overview.md index fb58d34c5..5f85bcd55 100644 --- a/docs/docs/agents/overview.md +++ b/docs/docs/agents/overview.md @@ -1,5 +1,11 @@ --- title: Overview +search: + boost: 2 +tags: + - agent +hide: + - tags --- # Agent development with LangGraph diff --git a/docs/docs/agents/prebuilt.md b/docs/docs/agents/prebuilt.md index eb50c2025..be05edd04 100644 --- a/docs/docs/agents/prebuilt.md +++ b/docs/docs/agents/prebuilt.md @@ -1,3 +1,10 @@ +--- +tags: + - agent +hide: + - tags +--- + # Community Agents To share your project, simply open a Pull Request adding an entry for your package in our [packages.yml](https://github.com/langchain-ai/langgraph/blob/main/docs/_scripts/third_party_page/packages.yml) file. diff --git a/docs/docs/agents/run_agents.md b/docs/docs/agents/run_agents.md index 946e25867..874be6249 100644 --- a/docs/docs/agents/run_agents.md +++ b/docs/docs/agents/run_agents.md @@ -1,3 +1,12 @@ +--- +search: + boost: 2 +tags: + - agent +hide: + - tags +--- + # Running agents diff --git a/docs/docs/agents/streaming.md b/docs/docs/agents/streaming.md index 1491c7b38..7dd3451d3 100644 --- a/docs/docs/agents/streaming.md +++ b/docs/docs/agents/streaming.md @@ -1,3 +1,12 @@ +--- +search: + boost: 2 +tags: + - agent +hide: + - tags +--- + # Streaming Streaming is key to building responsive applications. There are a few types of data you’ll want to stream: diff --git a/docs/docs/agents/tools.md b/docs/docs/agents/tools.md index 436958cb7..623e6396a 100644 --- a/docs/docs/agents/tools.md +++ b/docs/docs/agents/tools.md @@ -1,3 +1,12 @@ +--- +search: + boost: 2 +tags: + - agent +hide: + - tags +--- + # Tools [Tools](https://python.langchain.com/docs/concepts/tools/) are a way to encapsulate a function and its input schema in a way that can be passed to a chat model that supports tool calling. This allows the model to request the execution of this function with specific inputs. diff --git a/docs/docs/agents/ui.md b/docs/docs/agents/ui.md index da9f675ea..8ccb8e772 100644 --- a/docs/docs/agents/ui.md +++ b/docs/docs/agents/ui.md @@ -1,3 +1,12 @@ +--- +search: + boost: 2 +tags: + - agent +hide: + - tags +--- + # UI You can use a prebuilt chat UI for interacting with any LangGraph agent through the [Agent Chat UI](https://github.com/langchain-ai/agent-chat-ui). Using the [deployed version](https://agentchat.vercel.app) is the quickest way to get started, and allows you to interact with both local and deployed graphs. diff --git a/docs/docs/cloud/how-tos/interrupt_concurrent.md b/docs/docs/cloud/how-tos/interrupt_concurrent.md index b5b767d2b..85ce45c0a 100644 --- a/docs/docs/cloud/how-tos/interrupt_concurrent.md +++ b/docs/docs/cloud/how-tos/interrupt_concurrent.md @@ -1,4 +1,4 @@ -# Interrupt +# How to use the interrupt option This guide assumes knowledge of what double-texting is, which you can learn about in the [double-texting conceptual guide](../../concepts/double_texting.md). diff --git a/docs/docs/cloud/how-tos/rollback_concurrent.md b/docs/docs/cloud/how-tos/rollback_concurrent.md index 3387e068a..833bdad93 100644 --- a/docs/docs/cloud/how-tos/rollback_concurrent.md +++ b/docs/docs/cloud/how-tos/rollback_concurrent.md @@ -1,4 +1,5 @@ -# Rollback +# How to use the Rollback option + This guide assumes knowledge of what double-texting is, which you can learn about in the [double-texting conceptual guide](../../concepts/double_texting.md). diff --git a/docs/docs/concepts/agentic_concepts.md b/docs/docs/concepts/agentic_concepts.md index b34b758d8..336633e95 100644 --- a/docs/docs/concepts/agentic_concepts.md +++ b/docs/docs/concepts/agentic_concepts.md @@ -1,3 +1,8 @@ +--- +search: + boost: 2 +--- + # Agent architectures Many LLM applications implement a particular control flow of steps before and / or after LLM calls. As an example, [RAG](https://github.com/langchain-ai/rag-from-scratch) performs retrieval of documents relevant to a user question, and passes those documents to an LLM in order to ground the model's response in the provided document context. diff --git a/docs/docs/concepts/application_structure.md b/docs/docs/concepts/application_structure.md index 4e96f908d..e938dff31 100644 --- a/docs/docs/concepts/application_structure.md +++ b/docs/docs/concepts/application_structure.md @@ -1,3 +1,8 @@ +--- +search: + boost: 2 +--- + # Application Structure !!! info "Prerequisites" diff --git a/docs/docs/concepts/assistants.md b/docs/docs/concepts/assistants.md index 4e33fc694..ef8986201 100644 --- a/docs/docs/concepts/assistants.md +++ b/docs/docs/concepts/assistants.md @@ -1,3 +1,8 @@ +--- +search: + boost: 2 +--- + # Assistants !!! info "Prerequisites" diff --git a/docs/docs/concepts/auth.md b/docs/docs/concepts/auth.md index 713e24e68..7e3f98399 100644 --- a/docs/docs/concepts/auth.md +++ b/docs/docs/concepts/auth.md @@ -1,3 +1,8 @@ +--- +search: + boost: 2 +--- + # Authentication & Access Control LangGraph Platform provides a flexible authentication and authorization system that can integrate with most authentication schemes. diff --git a/docs/docs/concepts/breakpoints.md b/docs/docs/concepts/breakpoints.md index 07374fef2..3454f9de7 100644 --- a/docs/docs/concepts/breakpoints.md +++ b/docs/docs/concepts/breakpoints.md @@ -1,3 +1,8 @@ +--- +search: + boost: 2 +--- + # Breakpoints Breakpoints pause graph execution at specific points and enable stepping through execution step by step. Breakpoints are powered by LangGraph's [**persistence layer**](./persistence.md), which saves the state after each graph step. Breakpoints can also be used to enable [**human-in-the-loop**](./human_in_the_loop.md) workflows, though we recommend using the [`interrupt` function](./human_in_the_loop.md#interrupt) for this purpose. diff --git a/docs/docs/concepts/bring_your_own_cloud.md b/docs/docs/concepts/bring_your_own_cloud.md index 76cfd1833..4a8e4c473 100644 --- a/docs/docs/concepts/bring_your_own_cloud.md +++ b/docs/docs/concepts/bring_your_own_cloud.md @@ -1,3 +1,8 @@ +--- +search: + boost: 2 +--- + # Bring Your Own Cloud (BYOC) !!! note Prerequisites diff --git a/docs/docs/concepts/deployment_options.md b/docs/docs/concepts/deployment_options.md index 554c0d87c..b61e18b4a 100644 --- a/docs/docs/concepts/deployment_options.md +++ b/docs/docs/concepts/deployment_options.md @@ -1,3 +1,8 @@ +--- +search: + boost: 2 +--- + # Deployment Options !!! info "Prerequisites" diff --git a/docs/docs/concepts/double_texting.md b/docs/docs/concepts/double_texting.md index 76c5a564b..cc11e898c 100644 --- a/docs/docs/concepts/double_texting.md +++ b/docs/docs/concepts/double_texting.md @@ -1,3 +1,8 @@ +--- +search: + boost: 2 +--- + # Double Texting !!! info "Prerequisites" diff --git a/docs/docs/concepts/durable_execution.md b/docs/docs/concepts/durable_execution.md index 2da2d05a3..1f85d5c71 100644 --- a/docs/docs/concepts/durable_execution.md +++ b/docs/docs/concepts/durable_execution.md @@ -1,3 +1,8 @@ +--- +search: + boost: 2 +--- + # Durable Execution **Durable execution** is a technique in which a process or workflow saves its progress at key points, allowing it to pause and later resume exactly where it left off. This is particularly useful in scenarios that require [human-in-the-loop](./human_in_the_loop.md), where users can inspect, validate, or modify the process before continuing, and in long-running tasks that might encounter interruptions or errors (e.g., calls to an LLM timing out). By preserving completed work, durable execution enables a process to resume without reprocessing previous steps -- even after a significant delay (e.g., a week later). diff --git a/docs/docs/concepts/faq.md b/docs/docs/concepts/faq.md index e8f4ee950..17d80f269 100644 --- a/docs/docs/concepts/faq.md +++ b/docs/docs/concepts/faq.md @@ -1,3 +1,8 @@ +--- +search: + boost: 2 +--- + # FAQ Common questions and their answers! diff --git a/docs/docs/concepts/functional_api.md b/docs/docs/concepts/functional_api.md index d6a3ebb1f..c39aa8f64 100644 --- a/docs/docs/concepts/functional_api.md +++ b/docs/docs/concepts/functional_api.md @@ -1,3 +1,8 @@ +--- +search: + boost: 2 +--- + # Functional API ## Overview diff --git a/docs/docs/concepts/high_level.md b/docs/docs/concepts/high_level.md index 08bb954ac..5ad24d841 100644 --- a/docs/docs/concepts/high_level.md +++ b/docs/docs/concepts/high_level.md @@ -1,3 +1,8 @@ +--- +search: + boost: 2 +--- + # Why LangGraph? ## LLM applications diff --git a/docs/docs/concepts/human_in_the_loop.md b/docs/docs/concepts/human_in_the_loop.md index bf9491531..c67194b16 100644 --- a/docs/docs/concepts/human_in_the_loop.md +++ b/docs/docs/concepts/human_in_the_loop.md @@ -1,3 +1,13 @@ +--- +search: + boost: 2 +tags: + - human-in-the-loop + - hil +hide: + - tags +--- + # Human-in-the-loop !!! tip "This guide uses the new `interrupt` function." diff --git a/docs/docs/concepts/index.md b/docs/docs/concepts/index.md index d4cc38333..cd15ad8d5 100644 --- a/docs/docs/concepts/index.md +++ b/docs/docs/concepts/index.md @@ -1,6 +1,8 @@ --- title: Concepts description: Conceptual Guide for LangGraph +search: + boost: 0.5 --- # Conceptual Guide diff --git a/docs/docs/concepts/langgraph_cli.md b/docs/docs/concepts/langgraph_cli.md index e6b1e1a3c..feff59db6 100644 --- a/docs/docs/concepts/langgraph_cli.md +++ b/docs/docs/concepts/langgraph_cli.md @@ -1,3 +1,8 @@ +--- +search: + boost: 2 +--- + # LangGraph CLI !!! info "Prerequisites" diff --git a/docs/docs/concepts/langgraph_cloud.md b/docs/docs/concepts/langgraph_cloud.md index 1e083dca8..f83d676e9 100644 --- a/docs/docs/concepts/langgraph_cloud.md +++ b/docs/docs/concepts/langgraph_cloud.md @@ -1,3 +1,8 @@ +--- +search: + boost: 2 +--- + # Cloud SaaS (Beta) To deploy a [LangGraph Server](../concepts/langgraph_server.md), follow the how-to guide for [how to deploy to Cloud SaaS](../cloud/deployment/cloud.md). diff --git a/docs/docs/concepts/langgraph_control_plane.md b/docs/docs/concepts/langgraph_control_plane.md index ee5b36601..85143f811 100644 --- a/docs/docs/concepts/langgraph_control_plane.md +++ b/docs/docs/concepts/langgraph_control_plane.md @@ -1,3 +1,8 @@ +--- +search: + boost: 2 +--- + # LangGraph Control Plane The term "control plane" is used broadly to refer to the Control Plane UI where users create and update [LangGraph Servers](./langgraph_server.md) (deployments) and the Control Plane APIs that support the UI experience. diff --git a/docs/docs/concepts/langgraph_data_plane.md b/docs/docs/concepts/langgraph_data_plane.md index 5b9f39cf1..9d47b7e77 100644 --- a/docs/docs/concepts/langgraph_data_plane.md +++ b/docs/docs/concepts/langgraph_data_plane.md @@ -1,3 +1,8 @@ +--- +search: + boost: 2 +--- + # LangGraph Data Plane The term "data plane" is used broadly to refer to [LangGraph Servers](./langgraph_server.md) (deployments), the corresponding infrastructure for each server, and the "listener" application that continuously polls for updates from the [LangGraph Control Plane](./langgraph_control_plane.md). diff --git a/docs/docs/concepts/langgraph_self_hosted_control_plane.md b/docs/docs/concepts/langgraph_self_hosted_control_plane.md index 718556dc7..dc0ee0322 100644 --- a/docs/docs/concepts/langgraph_self_hosted_control_plane.md +++ b/docs/docs/concepts/langgraph_self_hosted_control_plane.md @@ -1,3 +1,8 @@ +--- +search: + boost: 2 +--- + # Self-Hosted Control Plane (Beta) To deploy a [LangGraph Server](../concepts/langgraph_server.md), follow the how-to guide for [how to deploy the Self-Hosted Control Plane](../cloud/deployment/self_hosted_control_plane.md). diff --git a/docs/docs/concepts/langgraph_self_hosted_data_plane.md b/docs/docs/concepts/langgraph_self_hosted_data_plane.md index 51f0114e1..b66dbf19b 100644 --- a/docs/docs/concepts/langgraph_self_hosted_data_plane.md +++ b/docs/docs/concepts/langgraph_self_hosted_data_plane.md @@ -1,3 +1,8 @@ +--- +search: + boost: 2 +--- + # Self-Hosted Data Plane (Beta) To deploy a [LangGraph Server](../concepts/langgraph_server.md), follow the how-to guide for [how to deploy the Self-Hosted Data Plane](../cloud/deployment/self_hosted_data_plane.md). diff --git a/docs/docs/concepts/langgraph_server.md b/docs/docs/concepts/langgraph_server.md index 7fcb7c607..97ecb9657 100644 --- a/docs/docs/concepts/langgraph_server.md +++ b/docs/docs/concepts/langgraph_server.md @@ -1,3 +1,8 @@ +--- +search: + boost: 2 +--- + # LangGraph Server !!! info "Prerequisites" diff --git a/docs/docs/concepts/langgraph_standalone_container.md b/docs/docs/concepts/langgraph_standalone_container.md index aacd78b69..5b6fd7324 100644 --- a/docs/docs/concepts/langgraph_standalone_container.md +++ b/docs/docs/concepts/langgraph_standalone_container.md @@ -1,3 +1,8 @@ +--- +search: + boost: 2 +--- + # Standalone Container To deploy a [LangGraph Server](../concepts/langgraph_server.md), follow the how-to guide for [how to deploy a Standalone Container](../cloud/deployment/standalone_container.md). diff --git a/docs/docs/concepts/langgraph_studio.md b/docs/docs/concepts/langgraph_studio.md index 7b00235bd..fdfb6ff3c 100644 --- a/docs/docs/concepts/langgraph_studio.md +++ b/docs/docs/concepts/langgraph_studio.md @@ -1,3 +1,8 @@ +--- +search: + boost: 2 +--- + # LangGraph Studio !!! info "Prerequisites" diff --git a/docs/docs/concepts/low_level.md b/docs/docs/concepts/low_level.md index bd399b94c..d652bed3e 100644 --- a/docs/docs/concepts/low_level.md +++ b/docs/docs/concepts/low_level.md @@ -1,3 +1,8 @@ +--- +search: + boost: 2 +--- + # LangGraph Glossary ## Graphs diff --git a/docs/docs/concepts/memory.md b/docs/docs/concepts/memory.md index 341d51b76..5e1f97ac5 100644 --- a/docs/docs/concepts/memory.md +++ b/docs/docs/concepts/memory.md @@ -1,3 +1,8 @@ +--- +search: + boost: 2 +--- + # Memory ## What is Memory? diff --git a/docs/docs/concepts/multi_agent.md b/docs/docs/concepts/multi_agent.md index 6dc2b1287..401fab8be 100644 --- a/docs/docs/concepts/multi_agent.md +++ b/docs/docs/concepts/multi_agent.md @@ -1,3 +1,8 @@ +--- +search: + boost: 2 +--- + # Multi-agent Systems An [agent](./agentic_concepts.md#agent-architectures) is _a system that uses an LLM to decide the control flow of an application_. As you develop these systems, they might grow more complex over time, making them harder to manage and scale. For example, you might run into the following problems: diff --git a/docs/docs/concepts/persistence.md b/docs/docs/concepts/persistence.md index 8b9981611..28ef4a96b 100644 --- a/docs/docs/concepts/persistence.md +++ b/docs/docs/concepts/persistence.md @@ -1,3 +1,8 @@ +--- +search: + boost: 2 +--- + # Persistence LangGraph has a built-in persistence layer, implemented through checkpointers. When you compile graph with a checkpointer, the checkpointer saves a `checkpoint` of the graph state at every super-step. Those checkpoints are saved to a `thread`, which can be accessed after graph execution. Because `threads` allow access to graph's state after execution, several powerful capabilities including human-in-the-loop, memory, time travel, and fault-tolerance are all possible. See [this how-to guide](../how-tos/persistence.ipynb) for an end-to-end example on how to add and use checkpointers with your graph. Below, we'll discuss each of these concepts in more detail. diff --git a/docs/docs/concepts/plans.md b/docs/docs/concepts/plans.md index 8163520c0..883477155 100644 --- a/docs/docs/concepts/plans.md +++ b/docs/docs/concepts/plans.md @@ -1,3 +1,8 @@ +--- +search: + boost: 2 +--- + # LangGraph Platform Plans diff --git a/docs/docs/concepts/platform_architecture.md b/docs/docs/concepts/platform_architecture.md index dbe247a1e..3b7e9f95d 100644 --- a/docs/docs/concepts/platform_architecture.md +++ b/docs/docs/concepts/platform_architecture.md @@ -1,3 +1,8 @@ +--- +search: + boost: 2 +--- + # LangGraph Platform Architecture ![](img/langgraph_platform_deployment_architecture.png) diff --git a/docs/docs/concepts/pregel.md b/docs/docs/concepts/pregel.md index 232919ef4..eccd469cb 100644 --- a/docs/docs/concepts/pregel.md +++ b/docs/docs/concepts/pregel.md @@ -1,3 +1,8 @@ +--- +search: + boost: 2 +--- + # LangGraph's Runtime (Pregel) [Pregel][langgraph.pregel.Pregel] implements LangGraph's runtime, managing the execution of LangGraph applications. diff --git a/docs/docs/concepts/scalability_and_resilience.md b/docs/docs/concepts/scalability_and_resilience.md index b68061a51..089f63e34 100644 --- a/docs/docs/concepts/scalability_and_resilience.md +++ b/docs/docs/concepts/scalability_and_resilience.md @@ -1,3 +1,8 @@ +--- +search: + boost: 2 +--- + # LangGraph Platform: Scalability & Resilience LangGraph Platform is designed to scale horizontally with your workload. Each instance of the service is stateless, and keeps no resources in memory. The service is designed to gracefully handle new instances being added or removed, including hard shutdown cases. diff --git a/docs/docs/concepts/sdk.md b/docs/docs/concepts/sdk.md index b3b07bc9d..f97699bb7 100644 --- a/docs/docs/concepts/sdk.md +++ b/docs/docs/concepts/sdk.md @@ -1,3 +1,8 @@ +--- +search: + boost: 2 +--- + # LangGraph SDK !!! info "Prerequisites" diff --git a/docs/docs/concepts/self_hosted.md b/docs/docs/concepts/self_hosted.md index 8dd457e39..e6338e267 100644 --- a/docs/docs/concepts/self_hosted.md +++ b/docs/docs/concepts/self_hosted.md @@ -1,3 +1,8 @@ +--- +search: + boost: 2 +--- + # Self-Hosted !!! note Prerequisites diff --git a/docs/docs/concepts/streaming.md b/docs/docs/concepts/streaming.md index 6d24b335d..be1a0eeb6 100644 --- a/docs/docs/concepts/streaming.md +++ b/docs/docs/concepts/streaming.md @@ -1,3 +1,8 @@ +--- +search: + boost: 2 +--- + # Streaming Building a responsive app for end-users? Real-time updates are key to keeping users engaged as your app progresses. diff --git a/docs/docs/concepts/template_applications.md b/docs/docs/concepts/template_applications.md index dff269da6..c0518912d 100644 --- a/docs/docs/concepts/template_applications.md +++ b/docs/docs/concepts/template_applications.md @@ -1,3 +1,8 @@ +--- +search: + boost: 2 +--- + # Template Applications 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. diff --git a/docs/docs/concepts/time-travel.md b/docs/docs/concepts/time-travel.md index bf5e0925f..f58023eca 100644 --- a/docs/docs/concepts/time-travel.md +++ b/docs/docs/concepts/time-travel.md @@ -1,3 +1,8 @@ +--- +search: + boost: 2 +--- + # Time Travel ⏱️ !!! note "Prerequisites" diff --git a/docs/docs/how-tos/index.md b/docs/docs/how-tos/index.md index eabbfbbc0..9f6fdcbbc 100644 --- a/docs/docs/how-tos/index.md +++ b/docs/docs/how-tos/index.md @@ -1,6 +1,8 @@ --- title: How-to Guides description: How to accomplish common tasks in LangGraph +search: + boost: 0.5 --- # How-to Guides diff --git a/docs/docs/reference/index.md b/docs/docs/reference/index.md index dd78c1e8e..b0d9b67c0 100644 --- a/docs/docs/reference/index.md +++ b/docs/docs/reference/index.md @@ -1,6 +1,8 @@ --- title: Reference description: API reference for LangGraph +search: + boost: 0.5 ---