You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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)
```
8 months ago
..
api_reference docs: fix api build (#17898) 8 months ago
data 👥 Update LangChain people data (#17900) 8 months ago
docs community[minor]: Add tidb loader support (#17788) 8 months ago
scripts infra: add print rule to ruff (#16221) 8 months ago
src 👥 Update LangChain people data (#17743) 8 months ago
static docs: Update with LCEL examples to Ollama & ChatOllama Integration notebook (#16194) 9 months ago
.local_build.sh docs: partner packages (#16960) 8 months ago
README.md docs: developer docs (#14776) 10 months ago
babel.config.js Restructure docs (#11620) 1 year ago
code-block-loader.js Restructure docs (#11620) 1 year ago
docusaurus.config.js 👥 Update LangChain people data (#17743) 8 months ago
package-lock.json docs[patch]: search experiment (#14254) 10 months ago
package.json 👥 Update LangChain people data (#17743) 8 months ago
settings.ini Restructure docs (#11620) 1 year ago
sidebars.js docs: `Toolkits` menu (#16217) 8 months ago
vercel.json docs: remove stale redirects (#17831) 8 months ago
vercel_build.sh docs: add LangGraph (#15682) 9 months ago
vercel_requirements.txt infra: docs build install community editable (#14739) 10 months ago

README.md

LangChain Documentation

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