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 @@
{
".": "4.156.0"
".": "4.157.0"
}
8 changes: 4 additions & 4 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 1082
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/telnyx/telnyx-b15f02743c48d4744c21f69b811ec4ef6eb1401bc3502c593563e767c9871b6c.yml
openapi_spec_hash: 7eeb2b5f55398854ce865c0637d522d3
config_hash: 1d64e3d45331b7e1a413ee21a5fb8ee2
configured_endpoints: 1083
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/telnyx/telnyx-18cb682ab4086dc7bc6e802d4d992394d5dfd0cb26465f7df57cfc5be2780d4a.yml
openapi_spec_hash: 96f0a823b2cd6639e0aa1622e7324d26
config_hash: f3e5cb29b9b02a4e4dd3cce53e2edcec
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 4.157.0 (2026-06-18)

Full Changelog: [v4.156.0...v4.157.0](https://github.com/team-telnyx/telnyx-python/compare/v4.156.0...v4.157.0)

### Features

* add transcriptions-search API spec (dev/external) ([c89ff29](https://github.com/team-telnyx/telnyx-python/commit/c89ff29b49c05c7e4ec6090888e9e222aa91d541))

## 4.156.0 (2026-06-16)

Full Changelog: [v4.155.0...v4.156.0](https://github.com/team-telnyx/telnyx-python/compare/v4.155.0...v4.156.0)
Expand Down
2 changes: 2 additions & 0 deletions api.md
Original file line number Diff line number Diff line change
Expand Up @@ -572,6 +572,7 @@ Types:
from telnyx.types import (
AICreateResponseDeprecatedResponse,
AIRetrieveModelsResponse,
AISearchConversationHistoriesResponse,
AISummarizeResponse,
)
```
Expand All @@ -580,6 +581,7 @@ Methods:

- <code title="post /ai/responses">client.ai.<a href="./src/telnyx/resources/ai/ai.py">create_response_deprecated</a>(\*\*<a href="src/telnyx/types/ai_create_response_deprecated_params.py">params</a>) -> <a href="./src/telnyx/types/ai_create_response_deprecated_response.py">AICreateResponseDeprecatedResponse</a></code>
- <code title="get /ai/models">client.ai.<a href="./src/telnyx/resources/ai/ai.py">retrieve_models</a>() -> <a href="./src/telnyx/types/ai_retrieve_models_response.py">AIRetrieveModelsResponse</a></code>
- <code title="get /ai/conversation_histories">client.ai.<a href="./src/telnyx/resources/ai/ai.py">search_conversation_histories</a>(\*\*<a href="src/telnyx/types/ai_search_conversation_histories_params.py">params</a>) -> <a href="./src/telnyx/types/ai_search_conversation_histories_response.py">AISearchConversationHistoriesResponse</a></code>
- <code title="post /ai/summarize">client.ai.<a href="./src/telnyx/resources/ai/ai.py">summarize</a>(\*\*<a href="src/telnyx/types/ai_summarize_params.py">params</a>) -> <a href="./src/telnyx/types/ai_summarize_response.py">AISummarizeResponse</a></code>

## Assistants
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 = "telnyx"
version = "4.156.0"
version = "4.157.0"
description = "The official Python library for the telnyx API"
dynamic = ["readme"]
license = "MIT"
Expand Down
6 changes: 0 additions & 6 deletions src/telnyx/_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,6 @@ def advanced_orders(self) -> AdvancedOrdersResource:

@cached_property
def ai(self) -> AIResource:
"""Generate text with LLMs"""
from .resources.ai import AIResource

return AIResource(self)
Expand Down Expand Up @@ -2036,7 +2035,6 @@ def advanced_orders(self) -> AsyncAdvancedOrdersResource:

@cached_property
def ai(self) -> AsyncAIResource:
"""Generate text with LLMs"""
from .resources.ai import AsyncAIResource

return AsyncAIResource(self)
Expand Down Expand Up @@ -3350,7 +3348,6 @@ def advanced_orders(self) -> advanced_orders.AdvancedOrdersResourceWithRawRespon

@cached_property
def ai(self) -> ai.AIResourceWithRawResponse:
"""Generate text with LLMs"""
from .resources.ai import AIResourceWithRawResponse

return AIResourceWithRawResponse(self._client.ai)
Expand Down Expand Up @@ -4549,7 +4546,6 @@ def advanced_orders(self) -> advanced_orders.AsyncAdvancedOrdersResourceWithRawR

@cached_property
def ai(self) -> ai.AsyncAIResourceWithRawResponse:
"""Generate text with LLMs"""
from .resources.ai import AsyncAIResourceWithRawResponse

return AsyncAIResourceWithRawResponse(self._client.ai)
Expand Down Expand Up @@ -5764,7 +5760,6 @@ def advanced_orders(self) -> advanced_orders.AdvancedOrdersResourceWithStreaming

@cached_property
def ai(self) -> ai.AIResourceWithStreamingResponse:
"""Generate text with LLMs"""
from .resources.ai import AIResourceWithStreamingResponse

return AIResourceWithStreamingResponse(self._client.ai)
Expand Down Expand Up @@ -6981,7 +6976,6 @@ def advanced_orders(self) -> advanced_orders.AsyncAdvancedOrdersResourceWithStre

@cached_property
def ai(self) -> ai.AsyncAIResourceWithStreamingResponse:
"""Generate text with LLMs"""
from .resources.ai import AsyncAIResourceWithStreamingResponse

return AsyncAIResourceWithStreamingResponse(self._client.ai)
Expand Down
2 changes: 1 addition & 1 deletion src/telnyx/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

__title__ = "telnyx"
__version__ = "4.156.0" # x-release-please-version
__version__ = "4.157.0" # x-release-please-version
Loading
Loading