Skip to content

Commit

Permalink
fix: internal error typing
Browse files Browse the repository at this point in the history
  • Loading branch information
juliuslipp committed Jun 16, 2024
1 parent cc2d93d commit 235dd73
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mixedbread_ai/types/internal_error.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@


class InternalError(pydantic.BaseModel):
type: typing.Optional[typing.Literal["server_error"]] = None
type: typing.Optional[str] = None
url: typing.Optional[str] = None
message: typing.Optional[str] = None
details: typing.Optional[MxbaiApiErrorDetails] = None
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "mixedbread-ai"
version = "2.2.1"
version = "2.2.2"
description = "mixedbread ai (https://www.mixedbread.ai)"
authors = ["mixedbread.ai <support@mixedbread.ai>"]
license = "Apache-2.0"
Expand Down

0 comments on commit 235dd73

Please sign in to comment.