Philippe PRADOS
8711c61298
core[minor]: Adds an in-memory implementation of RecordManager ( #13200 )
...
**Description:**
langchain offers three technologies to save data:
-
[vectorstore](https://python.langchain.com/docs/modules/data_connection/vectorstores/ )
- [docstore](https://js.langchain.com/docs/api/schema/classes/Docstore )
- [record
manager](https://python.langchain.com/docs/modules/data_connection/indexing )
If you want to combine these technologies in a sample persistence
stategy you need a common implementation for each. `DocStore` propose
`InMemoryDocstore`.
We propose the class `MemoryRecordManager` to complete the system.
This is the prelude to another full-request, which needs a consistent
combination of persistence components.
**Tag maintainer:**
@baskaryan
**Twitter handle:**
@pprados
---------
Co-authored-by: Eugene Yurtsev <eyurtsev@gmail.com>
2024-06-20 12:19:10 -04:00
Eugene Yurtsev
4fe8403bfb
core[patch]: Expand documentation in the indexing namespace ( #23134 )
2024-06-19 10:11:44 -04:00
Leonid Ganeline
1a2ff56cd8
core[patch[: docstring update ( #21036 )
...
Added missed docstrings. Updated docstrings to consistent format.
2024-04-29 15:35:34 -04:00
Eugene Yurtsev
d8aa72f51d
core[minor],langchain[patch]: Move base indexing interface and logic to core ( #20667 )
...
This PR moves the interface and the logic to core.
The following changes to namespaces:
`indexes` -> `indexing`
`indexes._api` -> `indexing.api`
Testing code is intentionally duplicated for now since it's testing
different
implementations of the record manager (in-memory vs. SQL).
Common logic will need to be pulled out into the test client.
A follow up PR will move the SQL based implementation outside of
LangChain.
2024-04-24 13:18:42 -04:00