Skip to content

Commit e78df77

Browse files
authored
Merge branch 'master' into LouisAuneau/openai-validation-errors
2 parents 79c64d1 + 7cef35b commit e78df77

File tree

331 files changed

+22693
-8483
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

331 files changed

+22693
-8483
lines changed

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ body:
66
- type: markdown
77
attributes:
88
value: |
9+
> **All contributions must be in English.** See the [language policy](https://docs.langchain.com/oss/python/contributing/overview#language-policy).
10+
911
Thank you for taking the time to file a bug report.
1012
1113
For usage questions, feature requests and general design questions, please use the [LangChain Forum](https://forum.langchain.com/).
@@ -65,8 +67,8 @@ body:
6567
- label: langchain-mistralai
6668
- label: langchain-nomic
6769
- label: langchain-ollama
70+
- label: langchain-openrouter
6871
- label: langchain-perplexity
69-
- label: langchain-prompty
7072
- label: langchain-qdrant
7173
- label: langchain-xai
7274
- label: Other / not sure / general

.github/ISSUE_TEMPLATE/feature-request.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ body:
66
- type: markdown
77
attributes:
88
value: |
9+
> **All contributions must be in English.** See the [language policy](https://docs.langchain.com/oss/python/contributing/overview#language-policy).
10+
911
Thank you for taking the time to request a new feature.
1012
1113
Use this to request NEW FEATURES or ENHANCEMENTS in LangChain. For bug reports, please use the bug report template. For usage questions and general design questions, please use the [LangChain Forum](https://forum.langchain.com/).
@@ -18,6 +20,8 @@ body:
1820
* [LangChain ChatBot](https://chat.langchain.com/)
1921
* [GitHub search](https://github.com/langchain-ai/langchain),
2022
* [LangChain Forum](https://forum.langchain.com/),
23+
24+
**Note:** Do not begin work on a PR unless explicitly assigned to this issue by a maintainer.
2125
- type: checkboxes
2226
id: checks
2327
attributes:
@@ -62,8 +66,8 @@ body:
6266
- label: langchain-mistralai
6367
- label: langchain-nomic
6468
- label: langchain-ollama
69+
- label: langchain-openrouter
6570
- label: langchain-perplexity
66-
- label: langchain-prompty
6771
- label: langchain-qdrant
6872
- label: langchain-xai
6973
- label: Other / not sure / general

.github/ISSUE_TEMPLATE/privileged.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ body:
4242
- label: langchain-mistralai
4343
- label: langchain-nomic
4444
- label: langchain-ollama
45+
- label: langchain-openrouter
4546
- label: langchain-perplexity
46-
- label: langchain-prompty
4747
- label: langchain-qdrant
4848
- label: langchain-xai
4949
- label: Other / not sure / general

.github/ISSUE_TEMPLATE/task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,8 @@ body:
113113
- label: langchain-mistralai
114114
- label: langchain-nomic
115115
- label: langchain-ollama
116+
- label: langchain-openrouter
116117
- label: langchain-perplexity
117-
- label: langchain-prompty
118118
- label: langchain-qdrant
119119
- label: langchain-xai
120120
- label: Other / not sure / general

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
1-
(Replace this entire block of text)
1+
Fixes #
2+
3+
<!-- Replace everything above this line with a 1-2 sentence description of your change. Keep the "Fixes #xx" keyword and update the issue number. -->
24

35
Read the full contributing guidelines: https://docs.langchain.com/oss/python/contributing/overview
6+
7+
> **All contributions must be in English.** See the [language policy](https://docs.langchain.com/oss/python/contributing/overview#language-policy).
8+
49
If you paste a large clearly AI generated description here your PR may be IGNORED or CLOSED!
510

611
Thank you for contributing to LangChain! Follow these steps to have your pull request considered as ready for review.
@@ -16,7 +21,7 @@ Thank you for contributing to LangChain! Follow these steps to have your pull re
1621
2. PR description:
1722

1823
- Write 1-2 sentences summarizing the change.
19-
- If this PR addresses a specific issue, please include "Fixes #ISSUE_NUMBER" in the description to automatically close the issue when the PR is merged.
24+
- The `Fixes #xx` line at the top is **required** for external contributions — update the issue number and keep the keyword. This links your PR to the approved issue and auto-closes it on merge.
2025
- If there are any breaking changes, please clearly describe them.
2126
- If this PR depends on another PR being merged first, please include "Depends on #PR_NUMBER" in the description.
2227

@@ -28,7 +33,7 @@ Thank you for contributing to LangChain! Follow these steps to have your pull re
2833

2934
Additional guidelines:
3035

31-
- We ask that if you use generative AI for your contribution, you include a disclaimer.
36+
- All external PRs must link to an issue or discussion where a solution has been approved by a maintainer, and you must be assigned to that issue. PRs without prior approval will be closed.
3237
- PRs should not touch more than one package unless absolutely necessary.
3338
- Do not update the `uv.lock` files or add dependencies to `pyproject.toml` files (even optional ones) unless you have explicit permission to do so by a maintainer.
3439

.github/actions/uv_setup/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ runs:
2727
using: composite
2828
steps:
2929
- name: Install uv and set the python version
30-
uses: astral-sh/setup-uv@v7
30+
uses: astral-sh/setup-uv@0ca8f610542aa7f4acaf39e65cf4eb3c35091883 # v7
3131
with:
3232
version: ${{ env.UV_VERSION }}
3333
python-version: ${{ inputs.python-version }}

.github/dependabot.yml

Lines changed: 85 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,88 @@ updates:
88
- package-ecosystem: "github-actions"
99
directory: "/"
1010
schedule:
11-
interval: "weekly"
11+
interval: "monthly"
12+
groups:
13+
minor-and-patch:
14+
patterns:
15+
- "*"
16+
update-types:
17+
- "minor"
18+
- "patch"
19+
major:
20+
patterns:
21+
- "*"
22+
update-types:
23+
- "major"
24+
25+
- package-ecosystem: "uv"
26+
directories:
27+
- "/libs/core/"
28+
- "/libs/langchain/"
29+
- "/libs/langchain_v1/"
30+
schedule:
31+
interval: "monthly"
32+
groups:
33+
minor-and-patch:
34+
patterns:
35+
- "*"
36+
update-types:
37+
- "minor"
38+
- "patch"
39+
major:
40+
patterns:
41+
- "*"
42+
update-types:
43+
- "major"
44+
45+
- package-ecosystem: "uv"
46+
directories:
47+
- "/libs/partners/anthropic/"
48+
- "/libs/partners/chroma/"
49+
- "/libs/partners/deepseek/"
50+
- "/libs/partners/exa/"
51+
- "/libs/partners/fireworks/"
52+
- "/libs/partners/groq/"
53+
- "/libs/partners/huggingface/"
54+
- "/libs/partners/mistralai/"
55+
- "/libs/partners/nomic/"
56+
- "/libs/partners/ollama/"
57+
- "/libs/partners/openai/"
58+
- "/libs/partners/openrouter/"
59+
- "/libs/partners/perplexity/"
60+
- "/libs/partners/qdrant/"
61+
- "/libs/partners/xai/"
62+
schedule:
63+
interval: "monthly"
64+
groups:
65+
minor-and-patch:
66+
patterns:
67+
- "*"
68+
update-types:
69+
- "minor"
70+
- "patch"
71+
major:
72+
patterns:
73+
- "*"
74+
update-types:
75+
- "major"
76+
77+
- package-ecosystem: "uv"
78+
directories:
79+
- "/libs/text-splitters/"
80+
- "/libs/standard-tests/"
81+
- "/libs/model-profiles/"
82+
schedule:
83+
interval: "monthly"
84+
groups:
85+
minor-and-patch:
86+
patterns:
87+
- "*"
88+
update-types:
89+
- "minor"
90+
- "patch"
91+
major:
92+
patterns:
93+
- "*"
94+
update-types:
95+
- "major"

.github/images/logo-dark.svg

Lines changed: 6 additions & 25 deletions
Loading

0 commit comments

Comments
 (0)