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.0.0-alpha.1"
".": "2.0.0-alpha.2"
}
6 changes: 3 additions & 3 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 44
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/togetherai%2Ftogetherai-b86f8e6c4674d1a7829ffa8ddff4bc93d21334d231e6a4d0fd734d411c07a4eb.yml
openapi_spec_hash: 8af4975be6ae8f4655fa92fd26af9682
config_hash: b337cdd3c62dbd3383529592a029b347
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/togetherai%2Ftogetherai-e9e60279414ac3279c025d6318b5f67a8f6d01170e365612e791f3a1f259b94f.yml
openapi_spec_hash: 26c59292808c5ae9f222f95f056430cf
config_hash: afbbabb8eb5bfbbf8139546a13addd9a
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 2.0.0-alpha.2 (2025-11-21)

Full Changelog: [v2.0.0-alpha.1...v2.0.0-alpha.2](https://github.com/togethercomputer/together-py/compare/v2.0.0-alpha.1...v2.0.0-alpha.2)

### ⚠ BREAKING CHANGES

* **api:** Change call signature for `audio.create` to `audio.speech.create` to match spec with python library and add space for future APIs

### Features

* **api:** api update ([9d5e1a2](https://github.com/togethercomputer/together-py/commit/9d5e1a2a8fe09f01ac9ed984361139064d42a2d8))
* **api:** Change TTS call signature ([251c911](https://github.com/togethercomputer/together-py/commit/251c911e4b6562fb1751ae2a880e7ff6bb2e7bd2))

## 2.0.0-alpha.1 (2025-11-21)

Full Changelog: [v0.1.0-alpha.28...v2.0.0-alpha.1](https://github.com/togethercomputer/together-py/compare/v0.1.0-alpha.28...v2.0.0-alpha.1)
Expand Down
4 changes: 3 additions & 1 deletion api.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,11 @@ Types:
from together.types import AudioFile, AudioSpeechStreamChunk
```

## Speech

Methods:

- <code title="post /audio/speech">client.audio.<a href="./src/together/resources/audio/audio.py">create</a>(\*\*<a href="src/together/types/audio_create_params.py">params</a>) -> BinaryAPIResponse</code>
- <code title="post /audio/speech">client.audio.speech.<a href="./src/together/resources/audio/speech.py">create</a>(\*\*<a href="src/together/types/audio/speech_create_params.py">params</a>) -> BinaryAPIResponse</code>

## Voices

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 = "together"
version = "2.0.0-alpha.1"
version = "2.0.0-alpha.2"
description = "The official Python library for the together API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/together/_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__ = "together"
__version__ = "2.0.0-alpha.1" # x-release-please-version
__version__ = "2.0.0-alpha.2" # x-release-please-version
14 changes: 14 additions & 0 deletions src/together/resources/audio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@
AudioResourceWithStreamingResponse,
AsyncAudioResourceWithStreamingResponse,
)
from .speech import (
SpeechResource,
AsyncSpeechResource,
SpeechResourceWithRawResponse,
AsyncSpeechResourceWithRawResponse,
SpeechResourceWithStreamingResponse,
AsyncSpeechResourceWithStreamingResponse,
)
from .voices import (
VoicesResource,
AsyncVoicesResource,
Expand All @@ -34,6 +42,12 @@
)

__all__ = [
"SpeechResource",
"AsyncSpeechResource",
"SpeechResourceWithRawResponse",
"AsyncSpeechResourceWithRawResponse",
"SpeechResourceWithStreamingResponse",
"AsyncSpeechResourceWithStreamingResponse",
"VoicesResource",
"AsyncVoicesResource",
"VoicesResourceWithRawResponse",
Expand Down
Loading
Loading