@langchain/langgraph-cli 1.0.3 → 1.0.4
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/CHANGELOG.md +7 -0
- package/dist/cli/docker.mjs +1 -1
- package/dist/cli/up.mjs +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
package/dist/cli/docker.mjs
CHANGED
|
@@ -104,7 +104,7 @@ builder
|
|
|
104
104
|
await fs.writeFile(envPath, dedent `
|
|
105
105
|
# Uncomment the following line to add your LangSmith API key
|
|
106
106
|
# LANGSMITH_API_KEY=your-api-key
|
|
107
|
-
# Or if you have a
|
|
107
|
+
# Or if you have a LangSmith Deployment license key, then uncomment the following line:
|
|
108
108
|
# LANGGRAPH_CLOUD_LICENSE_KEY=your-license-key
|
|
109
109
|
# Add any other environment variables go below...
|
|
110
110
|
`);
|
package/dist/cli/up.mjs
CHANGED
|
@@ -56,7 +56,7 @@ builder
|
|
|
56
56
|
.action(async (params) => {
|
|
57
57
|
logger.info("Starting LangGraph API server...");
|
|
58
58
|
logger.warn(dedent `
|
|
59
|
-
For local dev, requires env var LANGSMITH_API_KEY with access to
|
|
59
|
+
For local dev, requires env var LANGSMITH_API_KEY with access to LangSmith Deployment.
|
|
60
60
|
For production use, requires a license key in env var LANGGRAPH_CLOUD_LICENSE_KEY.
|
|
61
61
|
`);
|
|
62
62
|
const configPath = await getProjectPath(params.config);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@langchain/langgraph-cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": "^18.19.0 || >=20.16.0"
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@babel/code-frame": "^7.26.2",
|
|
35
35
|
"@commander-js/extra-typings": "^13.0.0",
|
|
36
|
-
"@langchain/langgraph-api": "1.0.
|
|
36
|
+
"@langchain/langgraph-api": "1.0.4",
|
|
37
37
|
"chokidar": "^4.0.3",
|
|
38
38
|
"commander": "^13.0.0",
|
|
39
39
|
"create-langgraph": "1.0.0",
|
|
@@ -58,6 +58,6 @@
|
|
|
58
58
|
"prettier": "^2.8.3",
|
|
59
59
|
"tsx": "^4.19.3",
|
|
60
60
|
"typescript": "^4.9.5 || ^5.4.5",
|
|
61
|
-
"vitest": "^3.
|
|
61
|
+
"vitest": "^3.2.4"
|
|
62
62
|
}
|
|
63
63
|
}
|