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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "2.6.1"
".": "2.12.0"
}
6 changes: 3 additions & 3 deletions _carbonsteel.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"version": "1.1",
"generated_at": "2026-05-19T21:02:05Z",
"spec_sha": "4c822a78c44f68ac:cc7f4554e955f4fe",
"version": "1.2",
"generated_at": "2026-06-03T23:58:37Z",
"spec_sha": "3ac0d7427265f74f:f147e87623a53da9",
"files": [
"api.md",
"src/lmnt/__init__.py",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "lmnt"
version = "2.6.1"
version = "2.12.0"
description = "The official Python library for the LMNT API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/lmnt/_api_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Generated by carbonsteel. DO NOT EDIT.

LMNT_API_VERSION = "1.1"
LMNT_API_VERSION = "1.2"
2 changes: 1 addition & 1 deletion src/lmnt/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by carbonsteel. DO NOT EDIT.

__title__ = "lmnt"
__version__ = "2.6.1" # x-release-please-version
__version__ = "2.12.0" # x-release-please-version
4 changes: 1 addition & 3 deletions src/lmnt/types/speech_session_timestamps.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,5 @@ class SpeechSessionTimestamps(BaseModel):
timestamps: Optional[List[Timestamp]] = None
"""Array of timestamp objects, one per generated text token.

<Warning> The timestamps array resets its start time for each chunk of audio.

</Warning>
Start times are cumulative, and reset to 0.0 after a `flush` or `reset`.
"""
2 changes: 1 addition & 1 deletion tests/api_resources/test_sessions.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ async def test_init_operation(self, fake_connect: Any) -> None:
assert len(fake.sent) == 1
sent = json.loads(fake.sent[0])
assert sent["X-API-Key"] == "test-api-key"
assert sent["lmnt-version"] == "1.1"
assert sent["lmnt-version"] == "1.2"
assert sent["voice"] == "voice-id"

@pytest.mark.asyncio
Expand Down
Loading