Delta type not exported like other types
When implementing a type hinted SDK I was able to import all types directly from anthropic.types with the exception of Delta.
Looks like this is just missing from types.init.py.
I had a look at fixing but the file looks to be generated. It mentions CONTRIBUTING.md but that doesn't seem to detail how to run the Stainless tool to regenerate.
Workaround is to import from the respective module file:
from anthropic.types.raw_content_block_delta_event import Delta
Instead of the expected:
from anthropic.types import Delta
Hey @stevenh, thanks for the suggestion! I've added a change that should make this easier to import in the next release: https://github.com/anthropics/anthropic-sdk-python/pull/920