Swappable argument serialization (eg pickle
)
#10
RealOrangeOne
started this conversation in
Ideas
Replies: 1 comment
-
Would be nice to support pydantic models as well, though there's a difference between serialization (objects to primitives) and rendering (JSON or Pickle) so I am not sure if that should be handled separately. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Currently, arguments and return-values must be JSON serializable (using the default
json
encoder / decoder). This avoids a number of potential issues, at the detriment of flexibility.Should this be something configurable? And if so, what are the most useful options (eg
pickle
, custom JSON encoder / decoder etc).Beta Was this translation helpful? Give feedback.
All reactions