You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
langgraph-cli 0.2.3
Summary of Changes
Improved detection of Node.js and Python graphs by explicitly identifying Node.js file extensions rather than inferring them from non-Python files #4245
Detailed Changes
Configuration Validation
Renamed internal _is_python_graph function to _is_node_graph and updated its implementation to explicitly check for Node.js and TypeScript file extensions (.ts, .mts, .cts, .js, .mjs, .cjs) #4245
Updated validate_config function to first detect Node.js graphs using the new function, and then identify Python graphs as non-Node.js ones, making the detection logic more precise #4245