mirror of
https://github.com/hwchase17/langchain.git
synced 2026-01-24 05:50:18 +00:00
Co-authored-by: Mohammad Mohtashim <45242107+keenborder786@users.noreply.github.com> Co-authored-by: Caspar Broekhuizen <caspar@langchain.dev> Co-authored-by: ccurme <chester.curme@gmail.com> Co-authored-by: Christophe Bornet <cbornet@hotmail.com> Co-authored-by: Eugene Yurtsev <eyurtsev@gmail.com> Co-authored-by: Sadra Barikbin <sadraqazvin1@yahoo.com> Co-authored-by: Vadym Barda <vadim.barda@gmail.com>
2.0 KiB
2.0 KiB
(Replace this entire block of text)
Thank you for contributing to LangChain! Follow these steps to mark your pull request as ready for review. If any of these steps are not completed, your PR will not be considered for review.
-
PR title: Follows the format: {TYPE}({SCOPE}): {DESCRIPTION}
- Examples:
- feat(core): add multi-tenant support
- fix(cli): resolve flag parsing error
- docs(openai): update API usage examples
- Allowed
{TYPE}values:- feat, fix, docs, style, refactor, perf, test, build, ci, chore, revert, release
- Allowed
{SCOPE}values (optional):- core, cli, langchain, standard-tests, text-splitters, docs, anthropic, chroma, deepseek, exa, fireworks, groq, huggingface, mistralai, nomic, ollama, openai, perplexity, prompty, qdrant, xai, infra
- Once you've written the title, please delete this checklist item; do not include it in the PR.
- Examples:
-
PR message: Delete this entire checklist and replace with
- Description: a description of the change. Include a closing keyword if applicable to a relevant issue.
- Issue: the issue # it fixes, if applicable (e.g. Fixes #123)
- Dependencies: any dependencies required for this change
-
Lint and test: Run
make format,make lintandmake testfrom the root of the package(s) you've modified. We will not consider a PR unless these three are passing in CI. See contribution guidelines for more.
Additional guidelines:
- Most PRs should not touch more than one package.
- Please do not add dependencies to
pyproject.tomlfiles (even optional ones) unless they are required for unit tests. Likewise, please do not update theuv.lockfiles unless you are adding a required dependency. - Changes should be backwards compatible.
- Make sure optional dependencies are imported within a function.