forked from langchain-ai/langchainjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/main' into add-aca-sessions (#3)
* Bump @azure/identity to 4.2.0 * Merge remote-tracking branch 'upstream/main' into add-aca-sessions
- Loading branch information
1 parent
12181ca
commit d23e9f9
Showing
1,830 changed files
with
104,066 additions
and
77,091 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node | ||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs | ||
|
||
name: Build Examples | ||
|
||
on: | ||
push: | ||
branches: ["main"] | ||
pull_request: | ||
# Only run if examples, langchain, core, or integration package code changes. | ||
paths: | ||
- 'examples/**' | ||
- 'langchain/**' | ||
- 'langchain-core/**' | ||
- 'libs/**/**' | ||
workflow_dispatch: # Allows triggering the workflow manually in GitHub UI | ||
|
||
|
||
# If another push to the same PR or branch happens while this workflow is still running, | ||
# cancel the earlier run in favor of the next run. | ||
# | ||
# There's no point in testing an outdated version of the code. GitHub only allows | ||
# a limited number of job runners to be active at the same time, so it's better to cancel | ||
# pointless jobs early so that more useful jobs can run sooner. | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build: | ||
name: Build | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Use Node.js 18.x | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18.x | ||
- name: Install dependencies | ||
run: yarn install --immutable | ||
- name: Build examples | ||
run: yarn turbo:command build --filter=examples |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
name: Standard Tests (Integration) | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 13 * * *' | ||
|
||
jobs: | ||
standard-tests: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
package: [anthropic, cohere, google-genai, groq, mistralai] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Use Node.js 18.x | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18.x | ||
cache: "yarn" | ||
- name: Install dependencies | ||
run: yarn install --immutable --mode=skip-build | ||
- name: Run standard tests (integration) for ${{ matrix.package }} | ||
run: yarn test:standard:int --filter=@langchain/${{ matrix.package }} | ||
env: | ||
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }} | ||
COHERE_API_KEY: ${{ secrets.COHERE_API_KEY }} | ||
GOOGLE_API_KEY: ${{ secrets.GOOGLE_API_KEY }} | ||
GROQ_API_KEY: ${{ secrets.GROQ_API_KEY }} | ||
MISTRAL_API_KEY: ${{ secrets.MISTRAL_API_KEY }} | ||
|
||
# The `@langchain/openai` package contains standard tests for ChatOpenAI and AzureChatOpenAI | ||
# We want to run these separately, so we need to pass the exact path for each test, which means | ||
# we need separate jobs for each test. | ||
standard-tests-openai: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Use Node.js 18.x | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18.x | ||
cache: "yarn" | ||
- name: Install dependencies | ||
run: yarn install --immutable --mode=skip-build | ||
- name: Build `@langchain/openai` | ||
run: yarn build --filter=@langchain/openai | ||
- name: Run standard tests (integration) for ChatOpenAI | ||
run: yarn workspace @langchain/openai test:single src/tests/chat_models.standard.int.test.ts | ||
env: | ||
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | ||
|
||
standard-tests-azure-openai: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Use Node.js 18.x | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18.x | ||
cache: "yarn" | ||
- name: Install dependencies | ||
run: yarn install --immutable --mode=skip-build | ||
- name: Build `@langchain/openai` | ||
run: yarn build --filter=@langchain/openai | ||
- name: Run standard tests (integration) for `@langchain/openai` AzureChatOpenAI | ||
run: yarn workspace @langchain/openai test:single src/tests/azure/chat_models.standard.int.test.ts | ||
env: | ||
AZURE_OPENAI_API_KEY: ${{ secrets.AZURE_OPENAI_API_KEY }} | ||
AZURE_OPENAI_API_DEPLOYMENT_NAME: "chat" | ||
AZURE_OPENAI_API_VERSION: ${{ secrets.AZURE_OPENAI_API_VERSION }} | ||
AZURE_OPENAI_BASE_PATH: ${{ secrets.AZURE_OPENAI_BASE_PATH }} | ||
|
||
standard-tests-bedrock: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Use Node.js 18.x | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18.x | ||
cache: "yarn" | ||
- name: Install dependencies | ||
run: yarn install --immutable --mode=skip-build | ||
- name: Build `@langchain/community` | ||
run: yarn build --filter=@langchain/community | ||
- name: Run standard tests (integration) for `@langchain/community` BedrockChat | ||
run: yarn workspace @langchain/community test:single src/chat_models/tests/chatbedrock.standard.int.test.ts | ||
env: | ||
BEDROCK_AWS_REGION: "us-east-1" | ||
BEDROCK_AWS_SECRET_ACCESS_KEY: ${{ secrets.BEDROCK_AWS_SECRET_ACCESS_KEY }} | ||
BEDROCK_AWS_ACCESS_KEY_ID: ${{ secrets.BEDROCK_AWS_ACCESS_KEY_ID }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.