-
Notifications
You must be signed in to change notification settings - Fork 176
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature-request: Pydantic validators+serializers to be able to round-trip all supported types #558
Comments
Can you share more about your use-case? What are you trying to do? |
Sure -- I'm trying to serialize pending LLM requests to JSON to put them in a work queue, with a consumer for each backend able to execute them (one per Bedrock region with the appropriate model, one for Anthropic first-party, &c) and then deserialize and run those requests. |
Rather than serialising the entire object, if it's a file could you not store in an s3 or R2 bucket and serialize the url and just add that to your queue. |
I don't actually need to serialize file-like objects. Thing is, that doesn't matter: Because file-like objects are possible in a MessageParam, I can't instantiate a That's the point of adding a serializer that replaces those objects with their content: the act of doing so will make messages serializable in practice even if they don't use the option to have a file handle attached, and it'll do so losslessly (in a way that lets folks use the Anthropic API and Pydantic together in a way that's natural to each and adds no extra configuration or dependencies); perhaps a bit inefficient compared to S3 or R2, but someone who cares about that inefficiency and is willing to add new service dependencies can add their own code to store content out-of-band as they see fit. |
@charles-dyfis-net can you share a full example of the code you'd like to be able to write, and what you have to do today? |
Have you looked at our |
I haven't; if there exist corresponding |
mmm, I think something like FWIW, I'd expect this to internally look roughy like this: data = json.loads(…)
return Message.build(**data) care to give that a try and see how it goes for you? |
Thank you -- I'll do that, hopefully within the next few days. (I'd still prefer to see Pydantic's (de)serialization work out-of-the-box, so folks don't need to implement logic specific to the Anthropic SDK, but if this does in fact work as advertised that reduces the priority / pain level significantly). |
Great, let me know what you find! |
Hi @charles-dyfis-net, in the next release you'll be able to use Image params won't serialise properly yet as we haven't defined a custom serialiser to handle file inputs, will have more to share on that front soon. |
Right now, pydantic can't instantiate a TypeAdapter for
anthropic.types.MessageParam
on account of the support for file-like objects (which, by nature, can't be serialized to JSON) in the data types used for image support. Attempting to instantiate apydantic.TypeAdapter(anthropic.types.MessageParam)
will throw aPydanticSchemaGenerationError
, becausetyping.IO[bytes]
can't be represented as a pydantic_core schema.If instead of using
TypedDict
the various classes were implemented as dataclasses (ideally usingpydantic.dataclasses.dataclass
), or were implemented using subclasses ofpydantic.BaseModel
, these classes could define custom serializers to convert into JSON-representable data -- for example, serializing a file-like object by actually reading its content into memory.The text was updated successfully, but these errors were encountered: