Skip to content
Open
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 @@
{
".": "0.41.0"
".": "0.41.1"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 82
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/togetherai/togetherai-ce108a2095d36552bb556506de04475674f512a13bc5aa099e9750993405be14.yml
openapi_spec_hash: 4763dd426dd805306bbb38a314158cd3
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/togetherai/togetherai-5c5db5b7b7a6dc77f50fc6ed673a1a035cc65c8fc437d993429570c153ce77be.yml
openapi_spec_hash: 2039f33594e0bb62e558e3c1094c1f76
config_hash: b35d5968fb07cce1c1be735f874898b1
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.41.1 (2026-05-21)

Full Changelog: [v0.41.0...v0.41.1](https://github.com/togethercomputer/together-typescript/compare/v0.41.0...v0.41.1)

### Documentation

* **api:** update file parameter docs in audio transcriptions/translations ([89955d1](https://github.com/togethercomputer/together-typescript/commit/89955d175b16b4c0291f5ba6631f1db979171c68))

## 0.41.0 (2026-05-20)

Full Changelog: [v0.40.0...v0.41.0](https://github.com/togethercomputer/together-typescript/compare/v0.40.0...v0.41.0)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "together-ai",
"version": "0.41.0",
"version": "0.41.1",
"description": "The official TypeScript library for the Together API",
"author": "Together <dev-feedback@TogetherAI.com>",
"types": "dist/index.d.ts",
Expand Down
6 changes: 4 additions & 2 deletions src/resources/audio/transcriptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 +175,10 @@ export namespace TranscriptionCreateResponse {

export interface TranscriptionCreateParams {
/**
* Audio file upload or public HTTP/HTTPS URL. Supported formats .wav, .mp3, .m4a,
* .webm, .flac, .ogg, .opus, .aac.
* Audio file upload or public HTTP/HTTPS URL. Supported formats: .wav, .mp3, .m4a,
* .webm, .flac, .ogg, .opus, .aac. Maximum duration 4 hours; longer audio is
* rejected with `audio_too_long`. Binary uploads are additionally capped at 500 MB
* (HTTP 413); URL-fetched audio is capped at 1 GB.
*/
file: Uploadable | string;

Expand Down
6 changes: 4 additions & 2 deletions src/resources/audio/translations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,10 @@ export namespace TranslationCreateResponse {

export interface TranslationCreateParams {
/**
* Audio file upload or public HTTP/HTTPS URL. Supported formats .wav, .mp3, .m4a,
* .webm, .flac, .ogg, .opus, .aac.
* Audio file upload or public HTTP/HTTPS URL. Supported formats: .wav, .mp3, .m4a,
* .webm, .flac, .ogg, .opus, .aac. Maximum duration 4 hours; longer audio is
* rejected with `audio_too_long`. Binary uploads are additionally capped at 500 MB
* (HTTP 413); URL-fetched audio is capped at 1 GB.
*/
file: Uploadable | string;

Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = '0.41.0'; // x-release-please-version
export const VERSION = '0.41.1'; // x-release-please-version
Loading