langchain/docs
Ian 3019a594b7
community[minor]: Add tidb loader support (#17788)
This pull request support loading data from TiDB database with
Langchain.

A simple usage:
```
from  langchain_community.document_loaders import TiDBLoader

CONNECTION_STRING = "mysql+pymysql://root@127.0.0.1:4000/test"

QUERY = "select id, name, description from items;"
loader = TiDBLoader(
    connection_string=CONNECTION_STRING,
    query=QUERY,
    page_content_columns=["name", "description"],
    metadata_columns=["id"],
)
documents = loader.load()
print(documents)
```
2024-02-21 16:42:33 -08:00
..
api_reference docs: fix api build (#17898) 2024-02-21 16:34:37 -08:00
data 👥 Update LangChain people data (#17900) 2024-02-21 16:38:28 -08:00
docs community[minor]: Add tidb loader support (#17788) 2024-02-21 16:42:33 -08:00
scripts infra: add print rule to ruff (#16221) 2024-02-09 16:13:30 -08:00
src 👥 Update LangChain people data (#17743) 2024-02-20 18:30:11 -08:00
static docs: Update with LCEL examples to Ollama & ChatOllama Integration notebook (#16194) 2024-01-22 22:05:59 -08:00
.local_build.sh docs: partner packages (#16960) 2024-02-02 15:12:21 -08:00
babel.config.js Restructure docs (#11620) 2023-10-10 12:55:19 -07:00
code-block-loader.js Restructure docs (#11620) 2023-10-10 12:55:19 -07:00
docusaurus.config.js 👥 Update LangChain people data (#17743) 2024-02-20 18:30:11 -08:00
package-lock.json docs[patch]: search experiment (#14254) 2023-12-04 16:58:26 -08:00
package.json 👥 Update LangChain people data (#17743) 2024-02-20 18:30:11 -08:00
README.md docs: developer docs (#14776) 2023-12-17 12:55:49 -08:00
settings.ini Restructure docs (#11620) 2023-10-10 12:55:19 -07:00
sidebars.js docs: Toolkits menu (#16217) 2024-02-08 14:52:26 -08:00
vercel_build.sh docs: add LangGraph (#15682) 2024-01-08 08:38:14 -08:00
vercel_requirements.txt infra: docs build install community editable (#14739) 2023-12-14 16:13:09 -08:00
vercel.json docs: remove stale redirects (#17831) 2024-02-20 17:11:43 -08:00

LangChain Documentation

For more information on contributing to our documentation, see the Documentation Contributing Guide