Skip to content

Commit

Permalink
feat: add back compat alias for InputJsonDelta
Browse files Browse the repository at this point in the history
  • Loading branch information
yjp20 committed Jul 24, 2024
1 parent c53efc7 commit 25a5b6c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/anthropic/types/input_json_delta.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@

from .._models import BaseModel

__all__ = ["InputJSONDelta"]

__all__ = ["InputJSONDelta", "InputJsonDelta"]

class InputJSONDelta(BaseModel):
partial_json: str

type: Literal["input_json_delta"]

InputJsonDelta = InputJSONDelta

0 comments on commit 25a5b6c

Please sign in to comment.