SQLRecordManger in 0.3 #28041
-
Re-reading documentation at https://python.langchain.com/docs/how_to/indexing/ and clicking in the SQLRecordManager link which points to https://python.langchain.com/api_reference/langchain/indexes/langchain.indexes._sql_record_manager.SQLRecordManager.html I'm getting a 404. Searching for Which package can I find the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
It seems like there have been issues with the documentation for The Unfortunately, I don't have specific information on which package contains the |
Beta Was this translation helpful? Give feedback.
It seems like there have been issues with the documentation for
SQLRecordManager
. There are similar closed issues regarding the lack of documentation forSQLRecordManager
[1][2].The
SQLRecordManager
is primarily designed to work with SQLite but should be adaptable to other SQL implementations like PostgreSQL. It uses SQL Alchemy'screate_engine
in the background, so most SQL Alchemy supported databases should work. You can refer to SQL Alchemy's documentation for more details on supported databases: SQL Alchemy Basic Usage.Unfortunately, I don't have specific information on which package contains the
SQLRecordManager
class in version 0.3. You might want to check the source code directl…