fix: update NestedDictInput value type to remove unnecessary Data option (#7437)

Co-authored-by: Jordan Frazier <122494242+jordanrfrazier@users.noreply.github.com>
This commit is contained in:
Deon Sanchez 2025-04-29 13:13:34 -06:00 committed by GitHub
commit e1608d143f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -443,7 +443,7 @@ class NestedDictInput(
"""
field_type: SerializableFieldTypes = FieldTypes.NESTED_DICT
value: dict | Data | None = {}
value: dict | None = {}
class DictInput(BaseInputMixin, ListableInputMixin, InputTraceMixin, ToolModeMixin):