langchain/docs/modules
Xin Qiu 4e13cef05a
feat: add redisearch vectorstore (#1307)
# Description

Add `RediSearch` vectorstore for LangChain

RediSearch: [RediSearch quick
start](https://redis.io/docs/stack/search/quick_start/)

# How to use

```
from langchain.vectorstores.redisearch import RediSearch

rds = RediSearch.from_documents(docs, embeddings,redisearch_url="redis://localhost:6379")
```
2023-03-14 18:06:03 -07:00
..
agents Harrison/convo agent (#1642) 2023-03-14 09:42:24 -07:00
chains Harrison/agent eval (#1620) 2023-03-14 12:37:48 -07:00
chat Harrison/prompt layer (#1547) 2023-03-08 21:24:27 -08:00
document_loaders cleanup: unify 3 different pdf loaders, rename PagedPDFSplitter (#1615) 2023-03-13 23:06:50 -07:00
indexes feat: add redisearch vectorstore (#1307) 2023-03-14 18:06:03 -07:00
llms (rfc) chat models (#1424) 2023-03-06 08:34:24 -08:00
memory [DOCS] Assorted wording, punctuation, and consistency revisions (#1443) 2023-03-08 20:16:09 -08:00
prompts bump version to 109 (#1646) 2023-03-13 15:52:35 -07:00
utils changed requests.run to requests.get (#1485) 2023-03-07 21:10:23 -08:00
agents.rst Documentation: Minor typo fixes (#1327) 2023-02-27 14:40:43 -08:00
chains.rst Documentation: Minor typo fixes (#1327) 2023-02-27 14:40:43 -08:00
chat.rst (rfc) chat models (#1424) 2023-03-06 08:34:24 -08:00
document_loaders.rst Harrison/unstructured support (#903) 2023-02-05 23:02:07 -08:00
indexes.rst improve docs for indexes (#1146) 2023-02-19 23:14:50 -08:00
llms.rst Fix minor error in LLM documentation (#602) 2023-01-12 18:16:32 -08:00
memory.rst Harrison/memory refactor (#1478) 2023-03-07 07:59:37 -08:00
prompts.rst
state_of_the_union.txt
utils.rst