Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

community[patch]: Fix build artifacts #5496

Merged
merged 1 commit into from
May 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions libs/langchain-community/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,10 @@ llms/yandex.cjs
llms/yandex.js
llms/yandex.d.ts
llms/yandex.d.cts
llms/layerup_security.cjs
llms/layerup_security.js
llms/layerup_security.d.ts
llms/layerup_security.d.cts
vectorstores/analyticdb.cjs
vectorstores/analyticdb.js
vectorstores/analyticdb.d.ts
Expand Down
13 changes: 13 additions & 0 deletions libs/langchain-community/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -1344,6 +1344,15 @@
"import": "./llms/yandex.js",
"require": "./llms/yandex.cjs"
},
"./llms/layerup_security": {
"types": {
"import": "./llms/layerup_security.d.ts",
"require": "./llms/layerup_security.d.cts",
"default": "./llms/layerup_security.d.ts"
},
"import": "./llms/layerup_security.js",
"require": "./llms/layerup_security.cjs"
},
"./vectorstores/analyticdb": {
"types": {
"import": "./vectorstores/analyticdb.d.ts",
Expand Down Expand Up @@ -3170,6 +3179,10 @@
"llms/yandex.js",
"llms/yandex.d.ts",
"llms/yandex.d.cts",
"llms/layerup_security.cjs",
"llms/layerup_security.js",
"llms/layerup_security.d.ts",
"llms/layerup_security.d.cts",
"vectorstores/analyticdb.cjs",
"vectorstores/analyticdb.js",
"vectorstores/analyticdb.d.ts",
Expand Down
1 change: 1 addition & 0 deletions libs/langchain-community/src/load/import_map.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ export * as tools__dynamic from "../tools/dynamic.js";
export * as tools__dataforseo_api_search from "../tools/dataforseo_api_search.js";
export * as tools__google_custom_search from "../tools/google_custom_search.js";
export * as tools__google_places from "../tools/google_places.js";
export * as tools__google_routes from "../tools/google_routes.js";
export * as tools__ifttt from "../tools/ifttt.js";
export * as tools__searchapi from "../tools/searchapi.js";
export * as tools__searxng_search from "../tools/searxng_search.js";
Expand Down
1 change: 1 addition & 0 deletions libs/langchain-community/src/load/import_type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ export interface SecretMap {
GOOGLE_API_KEY?: string;
GOOGLE_PALM_API_KEY?: string;
GOOGLE_PLACES_API_KEY?: string;
GOOGLE_ROUTES_API_KEY?: string;
GOOGLE_VERTEX_AI_WEB_CREDENTIALS?: string;
GRADIENT_ACCESS_TOKEN?: string;
GRADIENT_WORKSPACE_ID?: string;
Expand Down
Loading