Release Notes
v2.25.1
⚡️ Enhancement Notes
- Auto variadic sockets now also support
Optional[list[...]]input types, in addition to plainlist[...].
🐛 Bug Fixes
- Fixed smart connection logic to support connecting multiple outputs to a socket whose type is
Optional[list[...]](e.g.list[ChatMessage] | None). Previously, connecting twolist[ChatMessage]outputs toAgent.messageswould fail after its type was updated fromlist[ChatMessage]tolist[ChatMessage] | None.