Skip to content

Commit

Permalink
Run build
Browse files Browse the repository at this point in the history
  • Loading branch information
jacoblee93 committed Jan 2, 2025
1 parent cddf0a5 commit 090b292
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 1 deletion.
4 changes: 4 additions & 0 deletions libs/langchain-community/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -714,6 +714,10 @@ caches/upstash_redis.cjs
caches/upstash_redis.js
caches/upstash_redis.d.ts
caches/upstash_redis.d.cts
caches/vercel_kv.cjs
caches/vercel_kv.js
caches/vercel_kv.d.ts
caches/vercel_kv.d.cts
graphs/neo4j_graph.cjs
graphs/neo4j_graph.js
graphs/neo4j_graph.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 @@ -2334,6 +2334,15 @@
"import": "./caches/upstash_redis.js",
"require": "./caches/upstash_redis.cjs"
},
"./caches/vercel_kv": {
"types": {
"import": "./caches/vercel_kv.d.ts",
"require": "./caches/vercel_kv.d.cts",
"default": "./caches/vercel_kv.d.ts"
},
"import": "./caches/vercel_kv.js",
"require": "./caches/vercel_kv.cjs"
},
"./graphs/neo4j_graph": {
"types": {
"import": "./graphs/neo4j_graph.d.ts",
Expand Down Expand Up @@ -3900,6 +3909,10 @@
"caches/upstash_redis.js",
"caches/upstash_redis.d.ts",
"caches/upstash_redis.d.cts",
"caches/vercel_kv.cjs",
"caches/vercel_kv.js",
"caches/vercel_kv.d.ts",
"caches/vercel_kv.d.cts",
"graphs/neo4j_graph.cjs",
"graphs/neo4j_graph.js",
"graphs/neo4j_graph.d.ts",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { ChatOpenAI } from "@langchain/openai";
import { createClient } from "@vercel/kv";
import { VercelKVCache } from "../vercel_kv.js";

test.skip("VercelKVCache works with ChatOpenAI", async () => {
test("VercelKVCache works with ChatOpenAI", async () => {
if (
!process.env.VERCEL_KV_API_URL ||
!process.env.VERCEL_KV_API_TOKEN ||
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 @@ -67,6 +67,7 @@ export * as caches__cloudflare_kv from "../caches/cloudflare_kv.js";
export * as caches__ioredis from "../caches/ioredis.js";
export * as caches__momento from "../caches/momento.js";
export * as caches__upstash_redis from "../caches/upstash_redis.js";
export * as caches__vercel_kv from "../caches/vercel_kv.js";
export * as stores__doc__base from "../stores/doc/base.js";
export * as stores__doc__gcs from "../stores/doc/gcs.js";
export * as stores__doc__in_memory from "../stores/doc/in_memory.js";
Expand Down

0 comments on commit 090b292

Please sign in to comment.