diff --git a/docs/docs/agents/overview.md b/docs/docs/agents/overview.md index 9bc797e7a..9e6596d9d 100644 --- a/docs/docs/agents/overview.md +++ b/docs/docs/agents/overview.md @@ -215,7 +215,7 @@ Use the following tool to visualize the graph generated by [`createReactAgent`][ - [`tools`](./tools.md): A list of tools (functions, APIs, or other callable objects) that the agent can use to perform tasks. - `preModelHook`: A function that is called before the model is invoked. It can be used to condense messages or perform other preprocessing tasks. - `postModelHook`: A function that is called after the model is invoked. It can be used to implement guardrails, human-in-the-loop flows, or other postprocessing tasks. -- [`responseFormat`](./agents.md#structured-output): A data structure used to constrain the type of the final output (via Zod schemas). +- [`responseFormat`](./agents.md#6-configure-structured-output): A data structure used to constrain the type of the final output (via Zod schemas).
diff --git a/docs/docs/agents/ui.md b/docs/docs/agents/ui.md index 29a8e7cc4..fa05a0efc 100644 --- a/docs/docs/agents/ui.md +++ b/docs/docs/agents/ui.md @@ -23,6 +23,7 @@ Then, navigate to [Agent Chat UI](https://agentchat.vercel.app), or clone the re UI has out-of-box support for rendering tool calls, and tool result messages. To customize what messages are shown, see the [Hiding Messages in the Chat](https://github.com/langchain-ai/agent-chat-ui?tab=readme-ov-file#hiding-messages-in-the-chat) section in the Agent Chat UI documentation. +:::python ## Add human-in-the-loop Agent Chat UI has full support for [human-in-the-loop](../concepts/human_in_the_loop.md) workflows. To try it out, replace the agent code in `src/agent/graph.py` (from the [deployment](./deployment.md) guide) with this [agent implementation](./human-in-the-loop.md#using-with-agent-inbox): @@ -32,6 +33,7 @@ Agent Chat UI has full support for [human-in-the-loop](../concepts/human_in_the_ !!! Important Agent Chat UI works best if your LangGraph agent interrupts using the [`HumanInterrupt` schema][langgraph.prebuilt.interrupt.HumanInterrupt]. If you do not use that schema, the Agent Chat UI will be able to render the input passed to the `interrupt` function, but it will not have full support for resuming your graph. +::: ## Generative UI