mirror of
https://github.com/langchain-ai/langgraph.git
synced 2026-08-20 22:52:29 +02:00
Previously, `retry_on` in `RetryPolicy` accepted only exception classes, tuples of exception classes, or callables. Update the `retry_on` type annotation to include `List[Type[Exception]]` Changes: - Updated `retry_on` in `RetryPolicy` to accept `List[Type[Exception]]`.