Merge branch 'main' into vb/add-graph-command-docs

This commit is contained in:
Vadym Barda
2024-12-04 16:48:05 -05:00
committed by GitHub
3 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -427,7 +427,7 @@ When we use the LangGraph Platform, either locally (e.g., in LangGraph Studio) o
}
```
See the [deployment guide](../deployment/semantic_search.md) for more details and configuration options.
See the [deployment guide](../cloud/deployment/semantic_search.md) for more details and configuration options.
## Checkpointer libraries
+2 -1
View File
@@ -40,7 +40,8 @@ LangGraph makes it easy to manage conversation [memory](../concepts/memory.md) i
- [How to manage conversation history](memory/manage-conversation-history.ipynb)
- [How to delete messages](memory/delete-messages.ipynb)
- [How to add summary conversation memory](memory/add-summary-conversation-history.ipynb)
- [Add long-term memory (cross-thread)](cross-thread-persistence.ipynb)
- [How to add long-term memory (cross-thread)](cross-thread-persistence.ipynb)
- [How to use semantic search for long-term memory](memory/semantic-search.ipynb)
### Human-in-the-loop
@@ -43,7 +43,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"Next, create the store."
"Next, create the store with an [index configuration](https://langchain-ai.github.io/langgraph/reference/store/#langgraph.store.base.IndexConfig). By default, stores are configured without semantic/vector search. You can opt in to indexing items when creating the store by providing an [IndexConfig](https://langchain-ai.github.io/langgraph/reference/store/#langgraph.store.base.IndexConfig) to the store's constructor. If your store class does not implement this interface, or if you do not pass in an index configuration, semantic search is disabled, and all `index` arguments passed to `put` or `aput` will have no effect. Below is an example."
]
},
{