diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 811a88ee..93c546c8 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.35.1" + ".": "0.36.0" } diff --git a/.stats.yml b/.stats.yml index 0cd113f1..2f11a275 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 56 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/togetherai%2Ftogetherai-a9d83cd151880bb0b91852d44a032cfe48f0f82ac8ea7578af21d03fd9f1d3f4.yml -openapi_spec_hash: 64c052bc0b39c72d0ac61598aabaede6 -config_hash: 9f0a75905c5f0298de5b52158ac4b5c2 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/togetherai%2Ftogetherai-51627d25c5c4ea3cf03c92a335acf66cf8cad652079915109fe9711a57f7e003.yml +openapi_spec_hash: 97f97a89965aa05900566ca2824a4de1 +config_hash: 6acd26f13abe2b4550fb4bbb06d31523 diff --git a/CHANGELOG.md b/CHANGELOG.md index 7bae0386..2cbdf5b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 0.36.0 (2026-01-09) + +Full Changelog: [v0.35.1...v0.36.0](https://github.com/togethercomputer/together-typescript/compare/v0.35.1...v0.36.0) + +### Features + +* Add started_at timestamp to fix time estimation ([acd4d18](https://github.com/togethercomputer/together-typescript/commit/acd4d18cd15b9967543ba4b88f0a80fdc279d3a4)) + + +### Chores + +* **api:** Remove APIs that were accidentally added in the wrong namespace ([4f06842](https://github.com/togethercomputer/together-typescript/commit/4f068422db3df198a530dba1423a99cbd83a2ab8)) + ## 0.35.1 (2026-01-06) Full Changelog: [v0.35.0...v0.35.1](https://github.com/togethercomputer/together-typescript/compare/v0.35.0...v0.35.1) diff --git a/package.json b/package.json index 636c90f3..aaff4c7f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "together-ai", - "version": "0.35.1", + "version": "0.36.0", "description": "The official TypeScript library for the Together API", "author": "Together ", "types": "dist/index.d.ts", diff --git a/src/resources/fine-tuning.ts b/src/resources/fine-tuning.ts index a46216b3..a6c15c9c 100644 --- a/src/resources/fine-tuning.ts +++ b/src/resources/fine-tuning.ts @@ -264,6 +264,8 @@ export interface FinetuneResponse { queue_depth?: number; + started_at?: string; + token_count?: number; total_price?: number; @@ -488,6 +490,11 @@ export interface FineTuningCreateResponse { */ progress?: FineTuningCreateResponse.Progress; + /** + * Start timestamp of the current stage of the fine-tune job + */ + started_at?: string; + /** * Suffix added to the fine-tuned model name */ @@ -744,6 +751,11 @@ export namespace FineTuningListResponse { */ progress?: Data.Progress; + /** + * Start timestamp of the current stage of the fine-tune job + */ + started_at?: string; + /** * Suffix added to the fine-tuned model name */ @@ -1003,6 +1015,11 @@ export interface FineTuningCancelResponse { */ progress?: FineTuningCancelResponse.Progress; + /** + * Start timestamp of the current stage of the fine-tune job + */ + started_at?: string; + /** * Suffix added to the fine-tuned model name */ diff --git a/src/version.ts b/src/version.ts index c585ef4b..018dddd7 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '0.35.1'; // x-release-please-version +export const VERSION = '0.36.0'; // x-release-please-version