Right now we have a dataclassadapter and a pydanticadapter but are intended for data classes or base models.
This ensures we can use the class.
For certain use-cases like #250 we may want a less safe option which takes any python type and uses the magic of the Pedantic TypeAdapter to solve our problems for us. (perhaps with special handling for lists).
Let's come up with a plan to do this while keeping the dataclassadapter and pydanticadapter safe to use.
Right now we have a dataclassadapter and a pydanticadapter but are intended for data classes or base models.
This ensures we can use the class.
For certain use-cases like #250 we may want a less safe option which takes any python type and uses the magic of the Pedantic TypeAdapter to solve our problems for us. (perhaps with special handling for lists).
Let's come up with a plan to do this while keeping the dataclassadapter and pydanticadapter safe to use.