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 @@
{
".": "0.35.1"
".": "0.36.0"
}
6 changes: 3 additions & 3 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -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
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
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.35.1",
"version": "0.36.0",
"description": "The official TypeScript library for the Together API",
"author": "Together <[email protected]>",
"types": "dist/index.d.ts",
Expand Down
17 changes: 17 additions & 0 deletions src/resources/fine-tuning.ts
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,8 @@ export interface FinetuneResponse {

queue_depth?: number;

started_at?: string;

token_count?: number;

total_price?: number;
Expand Down Expand Up @@ -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
*/
Expand Down Expand Up @@ -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
*/
Expand Down Expand Up @@ -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
*/
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.35.1'; // x-release-please-version
export const VERSION = '0.36.0'; // x-release-please-version