Skip to content

sdk==0.1.35

Choose a tag to compare

@github-actions github-actions released this 28 Oct 22:31

langgraph-sdk 0.1.35

Summary of Changes

  • Increased client timeout values for read/write operations from 60 to 300 seconds for both async and sync clients
  • Added a raise_error parameter to the wait method, allowing users to control whether errors should be raised as exceptions

Detailed Changes

LangGraphClient.wait / SyncLangGraphClient.wait

  • Added a new raise_error parameter (defaults to True) which controls whether the method will raise an exception when errors are returned in the response
  • When raise_error=True and the response contains an __error__ object, an exception will be raised with the error message

get_client / get_sync_client

  • Increased default timeout values for read and write operations from 60 seconds to 300 seconds to better handle long-running graph operations