Skip to content

Commit 007960f

Browse files
authored
Merge branch 'main' into feat/supadata-loader-js
2 parents 2d75c01 + 487378b commit 007960f

File tree

75 files changed

+2107
-493
lines changed

Some content is hidden

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

75 files changed

+2107
-493
lines changed

.changeset/free-ends-shave.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@langchain/core": patch
3+
---
4+
5+
fix tool chunk concat behavior (#9450)

.changeset/long-mails-own.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/modern-bats-dig.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/ollama.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/serious-islands-build.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/sour-donkeys-relate.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/wet-taxis-heal.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.github/workflows/benchmark-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
os: [ubuntu-latest]
3232
runs-on: ${{ matrix.os }}
3333
steps:
34-
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
34+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
3535
- name: Setup pnpm
3636
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
3737
- name: Use Node.js

.github/workflows/compatibility.yml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -180,25 +180,25 @@ jobs:
180180
run: docker compose -f dependency_range_tests/docker-compose.yml run openai-lowest-deps
181181

182182
# Anthropic
183-
anthropic-latest-deps:
184-
runs-on: ubuntu-latest
185-
needs: get-changed-files
186-
if: (contains(needs.get-changed-files.outputs.changed_files, 'dependency_range_tests/scripts/with_standard_tests/anthropic/') || contains(needs.get-changed-files.outputs.changed_files, 'libs/langchain-core/') || contains(needs.get-changed-files.outputs.changed_files, 'libs/langchain-anthropic/'))
187-
steps:
188-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
189-
- name: Setup pnpm
190-
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
191-
- name: Use Node.js ${{ env.NODE_VERSION }}
192-
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6
193-
with:
194-
node-version: ${{ env.NODE_VERSION }}
195-
cache: "pnpm"
196-
- name: Install dependencies
197-
run: pnpm install --frozen-lockfile
198-
- name: Build `@langchain/standard-tests`
199-
run: pnpm build --filter=@langchain/standard-tests
200-
- name: Test `@langchain/anthropic` with latest deps
201-
run: docker compose -f dependency_range_tests/docker-compose.yml run anthropic-latest-deps
183+
# anthropic-latest-deps:
184+
# runs-on: ubuntu-latest
185+
# needs: get-changed-files
186+
# if: (contains(needs.get-changed-files.outputs.changed_files, 'dependency_range_tests/scripts/with_standard_tests/anthropic/') || contains(needs.get-changed-files.outputs.changed_files, 'libs/langchain-core/') || contains(needs.get-changed-files.outputs.changed_files, 'libs/langchain-anthropic/'))
187+
# steps:
188+
# - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
189+
# - name: Setup pnpm
190+
# uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
191+
# - name: Use Node.js ${{ env.NODE_VERSION }}
192+
# uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6
193+
# with:
194+
# node-version: ${{ env.NODE_VERSION }}
195+
# cache: "pnpm"
196+
# - name: Install dependencies
197+
# run: pnpm install --frozen-lockfile
198+
# - name: Build `@langchain/standard-tests`
199+
# run: pnpm build --filter=@langchain/standard-tests
200+
# - name: Test `@langchain/anthropic` with latest deps
201+
# run: docker compose -f dependency_range_tests/docker-compose.yml run anthropic-latest-deps
202202

203203
# anthropic-lowest-deps:
204204
# runs-on: ubuntu-latest

dependency_range_tests/docker-compose.yml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -121,22 +121,22 @@ services:
121121
command: bash /scripts/with_standard_tests/openai/test-with-lowest-deps.sh
122122

123123
# Anthropic
124-
anthropic-latest-deps:
125-
image: node:20
126-
environment:
127-
PUPPETEER_SKIP_DOWNLOAD: "true"
128-
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: "true"
129-
COHERE_API_KEY: ${COHERE_API_KEY}
130-
working_dir: /app
131-
volumes:
132-
- ../pnpm-workspace.yaml:/pnpm-workspace.yaml
133-
- ../turbo.json:/turbo.json
134-
- ./scripts/with_standard_tests/anthropic/node/package.json:/package.json
135-
- ../libs/langchain-standard-tests:/libs/langchain-standard-tests
136-
- ../libs/providers/langchain-anthropic:/libs/providers/langchain-anthropic
137-
- ../internal:/internal
138-
- ./scripts:/scripts
139-
command: bash /scripts/with_standard_tests/anthropic/test-with-latest-deps.sh
124+
# anthropic-latest-deps:
125+
# image: node:20
126+
# environment:
127+
# PUPPETEER_SKIP_DOWNLOAD: "true"
128+
# PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: "true"
129+
# COHERE_API_KEY: ${COHERE_API_KEY}
130+
# working_dir: /app
131+
# volumes:
132+
# - ../pnpm-workspace.yaml:/pnpm-workspace.yaml
133+
# - ../turbo.json:/turbo.json
134+
# - ./scripts/with_standard_tests/anthropic/node/package.json:/package.json
135+
# - ../libs/langchain-standard-tests:/libs/langchain-standard-tests
136+
# - ../libs/providers/langchain-anthropic:/libs/providers/langchain-anthropic
137+
# - ../internal:/internal
138+
# - ./scripts:/scripts
139+
# command: bash /scripts/with_standard_tests/anthropic/test-with-latest-deps.sh
140140
# anthropic-lowest-deps:
141141
# image: node:20
142142
# environment:

0 commit comments

Comments
 (0)