@langchain/langgraph-ui 0.0.20-dev.0 → 0.0.20-dev.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api.mjs +2 -2
- package/package.json +1 -1
package/dist/api.mjs
CHANGED
|
@@ -38,8 +38,8 @@ export async function watch(options) {
|
|
|
38
38
|
.object({ shared: z.array(z.string()).optional() })
|
|
39
39
|
.parse(JSON.parse(process.env.LANGGRAPH_UI_CONFIG || "{}"));
|
|
40
40
|
const fullPath = path.resolve(cwd, options.output);
|
|
41
|
-
const publicPath = path.resolve(fullPath, "
|
|
42
|
-
const schemasPath = path.resolve(fullPath, "
|
|
41
|
+
const publicPath = path.resolve(fullPath, "public");
|
|
42
|
+
const schemasPath = path.resolve(fullPath, "schemas.json");
|
|
43
43
|
const schemas = {};
|
|
44
44
|
let promiseSeq = Promise.resolve();
|
|
45
45
|
await Promise.all(Object.entries(defs).map(async ([graphId, userPath]) => {
|