Skip to content

Commit

Permalink
Merge pull request #3574 from langchain-ai/release
Browse files Browse the repository at this point in the history
Release 0.0.203
  • Loading branch information
jacoblee93 authored Dec 7, 2023
2 parents 078c5e6 + ad21a83 commit ad29cb3
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/api_refs/typedoc.json
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,7 @@
"./langchain/src/experimental/llms/bittensor.ts",
"./langchain/src/experimental/hubs/makersuite/googlemakersuitehub.ts",
"./langchain/src/experimental/chains/violation_of_expectations/index.ts",
"./langchain/src/experimental/masking/index.ts",
"./langchain/src/experimental/tools/pyinterpreter.ts",
"./langchain/src/evaluation/index.ts",
"./langchain/src/runnables/index.ts",
Expand Down
1 change: 1 addition & 0 deletions environment_tests/test-exports-bun/src/entrypoints.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ export * from "langchain/experimental/plan_and_execute";
export * from "langchain/experimental/chat_models/bittensor";
export * from "langchain/experimental/chat_models/ollama_functions";
export * from "langchain/experimental/chains/violation_of_expectations";
export * from "langchain/experimental/masking";
export * from "langchain/evaluation";
export * from "langchain/runnables";
export * from "langchain/runnables/remote";
1 change: 1 addition & 0 deletions environment_tests/test-exports-cf/src/entrypoints.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ export * from "langchain/experimental/plan_and_execute";
export * from "langchain/experimental/chat_models/bittensor";
export * from "langchain/experimental/chat_models/ollama_functions";
export * from "langchain/experimental/chains/violation_of_expectations";
export * from "langchain/experimental/masking";
export * from "langchain/evaluation";
export * from "langchain/runnables";
export * from "langchain/runnables/remote";
1 change: 1 addition & 0 deletions environment_tests/test-exports-cjs/src/entrypoints.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ const experimental_plan_and_execute = require("langchain/experimental/plan_and_e
const experimental_chat_models_bittensor = require("langchain/experimental/chat_models/bittensor");
const experimental_chat_models_ollama_functions = require("langchain/experimental/chat_models/ollama_functions");
const experimental_chains_violation_of_expectations = require("langchain/experimental/chains/violation_of_expectations");
const experimental_masking = require("langchain/experimental/masking");
const evaluation = require("langchain/evaluation");
const runnables = require("langchain/runnables");
const runnables_remote = require("langchain/runnables/remote");
1 change: 1 addition & 0 deletions environment_tests/test-exports-esbuild/src/entrypoints.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ import * as experimental_plan_and_execute from "langchain/experimental/plan_and_
import * as experimental_chat_models_bittensor from "langchain/experimental/chat_models/bittensor";
import * as experimental_chat_models_ollama_functions from "langchain/experimental/chat_models/ollama_functions";
import * as experimental_chains_violation_of_expectations from "langchain/experimental/chains/violation_of_expectations";
import * as experimental_masking from "langchain/experimental/masking";
import * as evaluation from "langchain/evaluation";
import * as runnables from "langchain/runnables";
import * as runnables_remote from "langchain/runnables/remote";
1 change: 1 addition & 0 deletions environment_tests/test-exports-esm/src/entrypoints.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ import * as experimental_plan_and_execute from "langchain/experimental/plan_and_
import * as experimental_chat_models_bittensor from "langchain/experimental/chat_models/bittensor";
import * as experimental_chat_models_ollama_functions from "langchain/experimental/chat_models/ollama_functions";
import * as experimental_chains_violation_of_expectations from "langchain/experimental/chains/violation_of_expectations";
import * as experimental_masking from "langchain/experimental/masking";
import * as evaluation from "langchain/evaluation";
import * as runnables from "langchain/runnables";
import * as runnables_remote from "langchain/runnables/remote";
1 change: 1 addition & 0 deletions environment_tests/test-exports-vercel/src/entrypoints.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ export * from "langchain/experimental/plan_and_execute";
export * from "langchain/experimental/chat_models/bittensor";
export * from "langchain/experimental/chat_models/ollama_functions";
export * from "langchain/experimental/chains/violation_of_expectations";
export * from "langchain/experimental/masking";
export * from "langchain/evaluation";
export * from "langchain/runnables";
export * from "langchain/runnables/remote";
1 change: 1 addition & 0 deletions environment_tests/test-exports-vite/src/entrypoints.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ export * from "langchain/experimental/plan_and_execute";
export * from "langchain/experimental/chat_models/bittensor";
export * from "langchain/experimental/chat_models/ollama_functions";
export * from "langchain/experimental/chains/violation_of_expectations";
export * from "langchain/experimental/masking";
export * from "langchain/evaluation";
export * from "langchain/runnables";
export * from "langchain/runnables/remote";
3 changes: 3 additions & 0 deletions langchain/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -823,6 +823,9 @@ experimental/hubs/makersuite/googlemakersuitehub.d.ts
experimental/chains/violation_of_expectations.cjs
experimental/chains/violation_of_expectations.js
experimental/chains/violation_of_expectations.d.ts
experimental/masking.cjs
experimental/masking.js
experimental/masking.d.ts
experimental/tools/pyinterpreter.cjs
experimental/tools/pyinterpreter.js
experimental/tools/pyinterpreter.d.ts
Expand Down
10 changes: 9 additions & 1 deletion langchain/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "langchain",
"version": "0.0.202",
"version": "0.0.203",
"description": "Typescript bindings for langchain",
"type": "module",
"engines": {
Expand Down Expand Up @@ -835,6 +835,9 @@
"experimental/chains/violation_of_expectations.cjs",
"experimental/chains/violation_of_expectations.js",
"experimental/chains/violation_of_expectations.d.ts",
"experimental/masking.cjs",
"experimental/masking.js",
"experimental/masking.d.ts",
"experimental/tools/pyinterpreter.cjs",
"experimental/tools/pyinterpreter.js",
"experimental/tools/pyinterpreter.d.ts",
Expand Down Expand Up @@ -2843,6 +2846,11 @@
"import": "./experimental/chains/violation_of_expectations.js",
"require": "./experimental/chains/violation_of_expectations.cjs"
},
"./experimental/masking": {
"types": "./experimental/masking.d.ts",
"import": "./experimental/masking.js",
"require": "./experimental/masking.cjs"
},
"./experimental/tools/pyinterpreter": {
"types": "./experimental/tools/pyinterpreter.d.ts",
"import": "./experimental/tools/pyinterpreter.js",
Expand Down

2 comments on commit ad29cb3

@vercel
Copy link

@vercel vercel bot commented on ad29cb3 Dec 7, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on ad29cb3 Dec 7, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

langchainjs-docs – ./docs/core_docs/

langchainjs-docs-ruddy.vercel.app
langchainjs-docs-langchain.vercel.app
js.langchain.com
langchainjs-docs-git-main-langchain.vercel.app

Please sign in to comment.