You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: The checkpoint identifier to continue training from a previous fine-tuning job. Format is `{$JOB_ID}` or `{$OUTPUT_MODEL_NAME}` or `{$JOB_ID}:{$STEP}` or `{$OUTPUT_MODEL_NAME}:{$STEP}`. The step value is optional; without it, the final checkpoint will be used.
1243
+
from_hf_model:
1244
+
type: string
1245
+
description: The Hugging Face Hub repo to start training from. Should be as close as possible to the base model (specified by the `model` argument) in terms of architecture and size.
1246
+
hf_model_revision:
1247
+
type: string
1248
+
description: The revision of the Hugging Face Hub model to continue training from. E.g., hf_model_revision=main (default, used if the argument is not provided) or hf_model_revision='607a30d783dfa663caf39e06633721c8d4cfcd7e' (specific commit).
1239
1249
hf_api_token:
1240
1250
type: string
1241
1251
description: The API token for the Hugging Face Hub.
description: The name of the moderation model used to validate tokens. Choose from the available moderation models found [here](https://docs.together.ai/docs/inference-models#moderation-models).
4134
4153
example: 'safety_model_name'
4154
+
reasoning_effort:
4155
+
type: string
4156
+
enum: ['low', 'medium', 'high']
4157
+
description: Controls the level of reasoning effort the model should apply when generating responses. Higher values may result in more thoughtful and detailed responses but may take longer to generate.
4158
+
example: 'medium'
4135
4159
4136
4160
ChatCompletionMessageParam:
4137
4161
oneOf:
@@ -4513,12 +4537,8 @@ components:
4513
4537
properties:
4514
4538
file:
4515
4539
oneOf:
4516
-
- type: string
4517
-
format: binary
4518
-
description: Audio file to transcribe
4519
-
- type: string
4520
-
format: uri
4521
-
description: Public HTTP/HTTPS URL to audio file
4540
+
- $ref: '#/components/schemas/AudioFileBinary'
4541
+
- $ref: '#/components/schemas/AudioFileUrl'
4522
4542
description: Audio file upload or public HTTP/HTTPS URL. Supported formats .wav, .mp3, .m4a, .webm, .flac.
4523
4543
model:
4524
4544
type: string
@@ -4565,7 +4585,7 @@ components:
4565
4585
maxItems: 2
4566
4586
description: Controls level of timestamp detail in verbose_json. Only used when response_format is verbose_json. Can be a single granularity or an array to get multiple levels.
4567
4587
default: segment
4568
-
example: ["word", "segment"]
4588
+
example: ['word', 'segment']
4569
4589
4570
4590
AudioTranscriptionResponse:
4571
4591
oneOf:
@@ -4730,7 +4750,7 @@ components:
4730
4750
maxItems: 2
4731
4751
description: Controls level of timestamp detail in verbose_json. Only used when response_format is verbose_json. Can be a single granularity or an array to get multiple levels.
4732
4752
default: segment
4733
-
example: ["word", "segment"]
4753
+
example: ['word', 'segment']
4734
4754
4735
4755
AudioTranslationResponse:
4736
4756
oneOf:
@@ -5413,6 +5433,10 @@ components:
5413
5433
type: string
5414
5434
from_checkpoint:
5415
5435
type: string
5436
+
from_hf_model:
5437
+
type: string
5438
+
hf_model_revision:
5439
+
type: string
5416
5440
5417
5441
FinetuneResponseTruncated:
5418
5442
type: object
@@ -5533,6 +5557,12 @@ components:
5533
5557
from_checkpoint:
5534
5558
type: string
5535
5559
description: Checkpoint used to continue training
5560
+
from_hf_model:
5561
+
type: string
5562
+
description: Hugging Face Hub repo to start training from
5563
+
hf_model_revision:
5564
+
type: string
5565
+
description: The revision of the Hugging Face Hub model to continue training from
5536
5566
5537
5567
FinetuneJobStatus:
5538
5568
type: string
@@ -6611,14 +6641,14 @@ components:
6611
6641
type: string
6612
6642
minItems: 2
6613
6643
description: List of possible classification labels
6614
-
example: ["yes", "no"]
6644
+
example: ['yes', 'no']
6615
6645
pass_labels:
6616
6646
type: array
6617
6647
items:
6618
6648
type: string
6619
6649
minItems: 1
6620
6650
description: List of labels that are considered passing
0 commit comments