Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions jigsawstack/audio.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,16 +77,11 @@ class SpeechToTextResponse(BaseResponse):
the speakers of the transcription, available if by_speaker is set to true
"""

language_detected: Optional[str]
language_detected: Optional[Dict[str, Any]]
"""
the language detected in the transcription, available if language is set to auto
"""

confidence: Optional[float]
"""
the confidence of the transcription language detection, available if language is set to auto
"""


class SpeechToTextWebhookResponse(BaseResponse):
status: Literal["processing", "error"]
Expand Down
2 changes: 1 addition & 1 deletion jigsawstack/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.4.0"
__version__ = "0.4.1"


def get_version() -> str:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setup(
name="jigsawstack",
version="0.4.0",
version="0.4.1",
description="JigsawStack - The AI SDK for Python",
long_description=open("README.md", encoding="utf8").read(),
long_description_content_type="text/markdown",
Expand Down