diff --git a/README.md b/README.md
index bd6cf5586..062b3fb5f 100644
--- a/README.md
+++ b/README.md
@@ -245,7 +245,7 @@ final_state["messages"][-1].content
We use ChatAnthropic as our LLM. NOTE: we need to make sure the model knows that it has these tools available to call. We can do this by converting the LangChain tools into the format for OpenAI tool calling using the .bind_tools() method.
- We define the tools we want to use - a search tool in our case. It is really easy to create your own tools - see documentation here on how to do that here.
+ We define the tools we want to use - a search tool in our case. It is really easy to create your own tools - see documentation here on how to do that here.
@@ -294,7 +294,7 @@ Then we define one normal and one conditional edge. Conditional edge means that
-
When we compile the graph, we turn it into a LangChain
- Runnable,
+ Runnable,
which automatically enables calling
.invoke(), .stream() and .batch()
with your inputs
diff --git a/libs/langgraph/README.md b/libs/langgraph/README.md
index bd6cf5586..062b3fb5f 100644
--- a/libs/langgraph/README.md
+++ b/libs/langgraph/README.md
@@ -245,7 +245,7 @@ final_state["messages"][-1].content
We use ChatAnthropic as our LLM. NOTE: we need to make sure the model knows that it has these tools available to call. We can do this by converting the LangChain tools into the format for OpenAI tool calling using the .bind_tools() method.
-
- We define the tools we want to use - a search tool in our case. It is really easy to create your own tools - see documentation here on how to do that here.
+ We define the tools we want to use - a search tool in our case. It is really easy to create your own tools - see documentation here on how to do that here.
@@ -294,7 +294,7 @@ Then we define one normal and one conditional edge. Conditional edge means that
-
When we compile the graph, we turn it into a LangChain
- Runnable,
+ Runnable,
which automatically enables calling
.invoke(), .stream() and .batch()
with your inputs