From 0b37032894a9ac980ac0176ceeb629599b93ed64 Mon Sep 17 00:00:00 2001 From: Aya Tanikawa <15815271+ayatnkw@users.noreply.github.com> Date: Mon, 2 Sep 2024 18:33:37 +0200 Subject: [PATCH] fix typo --- docs/core_docs/docs/tutorials/agents.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/core_docs/docs/tutorials/agents.mdx b/docs/core_docs/docs/tutorials/agents.mdx index de4749405a65..d3c0ad4ef4f0 100644 --- a/docs/core_docs/docs/tutorials/agents.mdx +++ b/docs/core_docs/docs/tutorials/agents.mdx @@ -100,7 +100,7 @@ console.log(retrieverResult[0]); */ ``` -Now that we have populated our index that we will bo doing retrieval over, we can easily turn it into a tool (the format needed for an agent to properly use it): +Now that we have populated our index that we will be doing retrieval over, we can easily turn it into a tool (the format needed for an agent to properly use it): ```typescript import { createRetrieverTool } from "langchain/tools/retriever";