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.1.65
Summary of Changes
Changed the type of the config parameter in the dev command from pathlib.Path to str, improving flexibility for command-line usage (PR #2771)
Updated dependency on langgraph-api to version >=0.0.12 (PR #2816)
Detailed Changes
CLI
The dev command's config parameter type signature was changed from pathlib.Path to str, but internally still converts it to a Path object when validating the configuration file (PR #2771)
This change allows users to provide a string path to the configuration file directly from the command line without requiring explicit Path conversion