together 2.0.0a14__py3-none-any.whl → 2.0.0a15__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- together/_version.py +1 -1
- together/constants.py +34 -0
- together/error.py +16 -0
- together/lib/cli/api/utils.py +4 -4
- together/lib/types/fine_tuning.py +3 -0
- together/types/__init__.py +12 -1
- together/types/chat_completions.py +7 -0
- together/types/endpoints.py +4 -0
- together/types/files.py +8 -0
- together/types/fine_tuning_cancel_response.py +3 -0
- together/types/fine_tuning_list_response.py +3 -0
- together/types/finetune.py +27 -0
- together/types/finetune_response.py +2 -0
- together/types/models.py +2 -0
- {together-2.0.0a14.dist-info → together-2.0.0a15.dist-info}/METADATA +42 -1
- {together-2.0.0a14.dist-info → together-2.0.0a15.dist-info}/RECORD +19 -12
- {together-2.0.0a14.dist-info → together-2.0.0a15.dist-info}/WHEEL +0 -0
- {together-2.0.0a14.dist-info → together-2.0.0a15.dist-info}/entry_points.txt +0 -0
- {together-2.0.0a14.dist-info → together-2.0.0a15.dist-info}/licenses/LICENSE +0 -0
together/_version.py
CHANGED
together/constants.py
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# Manually added to minimize breaking changes from V1
|
|
2
|
+
from ._constants import (
|
|
3
|
+
MAX_RETRY_DELAY as MAX_RETRY_DELAY,
|
|
4
|
+
DEFAULT_MAX_RETRIES,
|
|
5
|
+
INITIAL_RETRY_DELAY as INITIAL_RETRY_DELAY,
|
|
6
|
+
)
|
|
7
|
+
from .lib.constants import (
|
|
8
|
+
MIN_SAMPLES as MIN_SAMPLES,
|
|
9
|
+
DISABLE_TQDM as DISABLE_TQDM,
|
|
10
|
+
MAX_IMAGE_BYTES as MAX_IMAGE_BYTES,
|
|
11
|
+
NUM_BYTES_IN_GB as NUM_BYTES_IN_GB,
|
|
12
|
+
MAX_FILE_SIZE_GB as MAX_FILE_SIZE_GB,
|
|
13
|
+
MIN_PART_SIZE_MB as MIN_PART_SIZE_MB,
|
|
14
|
+
DOWNLOAD_BLOCK_SIZE as DOWNLOAD_BLOCK_SIZE,
|
|
15
|
+
MAX_MULTIPART_PARTS as MAX_MULTIPART_PARTS,
|
|
16
|
+
TARGET_PART_SIZE_MB as TARGET_PART_SIZE_MB,
|
|
17
|
+
MAX_CONCURRENT_PARTS as MAX_CONCURRENT_PARTS,
|
|
18
|
+
MAX_IMAGES_PER_EXAMPLE as MAX_IMAGES_PER_EXAMPLE,
|
|
19
|
+
MULTIPART_THRESHOLD_GB as MULTIPART_THRESHOLD_GB,
|
|
20
|
+
MAX_BASE64_IMAGE_LENGTH as MAX_BASE64_IMAGE_LENGTH,
|
|
21
|
+
MULTIPART_UPLOAD_TIMEOUT as MULTIPART_UPLOAD_TIMEOUT,
|
|
22
|
+
PARQUET_EXPECTED_COLUMNS as PARQUET_EXPECTED_COLUMNS,
|
|
23
|
+
REQUIRED_COLUMNS_MESSAGE as REQUIRED_COLUMNS_MESSAGE,
|
|
24
|
+
JSONL_REQUIRED_COLUMNS_MAP as JSONL_REQUIRED_COLUMNS_MAP,
|
|
25
|
+
POSSIBLE_ROLES_CONVERSATION as POSSIBLE_ROLES_CONVERSATION,
|
|
26
|
+
DatasetFormat as DatasetFormat,
|
|
27
|
+
)
|
|
28
|
+
|
|
29
|
+
TIMEOUT_SECS = 600
|
|
30
|
+
MAX_SESSION_LIFETIME_SECS = 180
|
|
31
|
+
MAX_CONNECTION_RETRIES = 2
|
|
32
|
+
MAX_RETRIES = DEFAULT_MAX_RETRIES
|
|
33
|
+
|
|
34
|
+
BASE_URL = "https://api.together.xyz/v1"
|
together/error.py
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
|
|
2
|
+
# Manually added to minimize breaking changes from V1
|
|
3
|
+
from ._exceptions import (
|
|
4
|
+
APIError as APIError,
|
|
5
|
+
RateLimitError as RateLimitError,
|
|
6
|
+
APITimeoutError,
|
|
7
|
+
BadRequestError,
|
|
8
|
+
APIConnectionError as APIConnectionError,
|
|
9
|
+
AuthenticationError as AuthenticationError,
|
|
10
|
+
APIResponseValidationError,
|
|
11
|
+
)
|
|
12
|
+
|
|
13
|
+
Timeout = APITimeoutError
|
|
14
|
+
InvalidRequestError = BadRequestError
|
|
15
|
+
TogetherException = APIError
|
|
16
|
+
ResponseError = APIResponseValidationError
|
together/lib/cli/api/utils.py
CHANGED
|
@@ -104,11 +104,11 @@ def generate_progress_bar(
|
|
|
104
104
|
progress = "Progress: [bold red]unavailable[/bold red]"
|
|
105
105
|
if finetune_job.status in COMPLETED_STATUSES:
|
|
106
106
|
progress = "Progress: [bold green]completed[/bold green]"
|
|
107
|
-
elif finetune_job
|
|
108
|
-
|
|
107
|
+
elif getattr(finetune_job, "started_at", None) is not None and isinstance(finetune_job.started_at, datetime):
|
|
108
|
+
started_at = finetune_job.started_at.astimezone()
|
|
109
109
|
|
|
110
110
|
if finetune_job.progress is not None:
|
|
111
|
-
if current_time <
|
|
111
|
+
if current_time < started_at:
|
|
112
112
|
return progress
|
|
113
113
|
|
|
114
114
|
if not finetune_job.progress.estimate_available:
|
|
@@ -117,7 +117,7 @@ def generate_progress_bar(
|
|
|
117
117
|
if finetune_job.progress.seconds_remaining <= 0:
|
|
118
118
|
return progress
|
|
119
119
|
|
|
120
|
-
elapsed_time = (current_time -
|
|
120
|
+
elapsed_time = (current_time - started_at).total_seconds()
|
|
121
121
|
ratio_filled = min(elapsed_time / finetune_job.progress.seconds_remaining, 1.0)
|
|
122
122
|
percentage = ratio_filled * 100
|
|
123
123
|
filled = math.ceil(ratio_filled * _PROGRESS_BAR_WIDTH)
|
|
@@ -305,6 +305,9 @@ class FinetuneResponse(BaseModel):
|
|
|
305
305
|
updated_at: datetime
|
|
306
306
|
"""Last update timestamp of the fine-tune job"""
|
|
307
307
|
|
|
308
|
+
started_at: Optional[datetime] = None
|
|
309
|
+
"""Start timestamp of a current stage of the fine-tune job"""
|
|
310
|
+
|
|
308
311
|
batch_size: Optional[int] = None
|
|
309
312
|
"""Batch size used for training"""
|
|
310
313
|
|
together/types/__init__.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
-
from __future__ import annotations
|
|
3
|
+
from __future__ import annotations # noqa
|
|
4
4
|
|
|
5
5
|
from .batch_job import BatchJob as BatchJob
|
|
6
6
|
from .embedding import Embedding as Embedding
|
|
@@ -68,3 +68,14 @@ from .fine_tuning_estimate_price_response import FineTuningEstimatePriceResponse
|
|
|
68
68
|
from .fine_tuning_list_checkpoints_response import (
|
|
69
69
|
FineTuningListCheckpointsResponse as FineTuningListCheckpointsResponse,
|
|
70
70
|
)
|
|
71
|
+
|
|
72
|
+
# Manually added to minimize breaking changes from V1
|
|
73
|
+
from .chat.chat_completion import ChatCompletion
|
|
74
|
+
from .chat.chat_completion_chunk import ChatCompletionChunk as ChatCompletionChunk
|
|
75
|
+
from .chat.chat_completion_usage import ChatCompletionUsage
|
|
76
|
+
UsageData = ChatCompletionUsage
|
|
77
|
+
ChatCompletionResponse = ChatCompletion
|
|
78
|
+
CompletionResponse = Completion
|
|
79
|
+
ListEndpoint = EndpointListResponse
|
|
80
|
+
ImageRequest = ImageGenerateParams
|
|
81
|
+
ImageResponse = ImageFile
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# Manually added to minimize breaking changes from V1
|
|
2
|
+
from .tool_choice import ToolChoice
|
|
3
|
+
from .chat.chat_completion import ChatCompletion
|
|
4
|
+
from .chat.chat_completion_chunk import ChatCompletionChunk as ChatCompletionChunk
|
|
5
|
+
|
|
6
|
+
ChatCompletionResponse = ChatCompletion
|
|
7
|
+
ToolCalls = ToolChoice
|
together/types/files.py
ADDED
|
@@ -177,6 +177,9 @@ class FineTuningCancelResponse(BaseModel):
|
|
|
177
177
|
progress: Optional[Progress] = None
|
|
178
178
|
"""Progress information for the fine-tuning job"""
|
|
179
179
|
|
|
180
|
+
started_at: Optional[datetime] = None
|
|
181
|
+
"""Start timestamp of the current stage of the fine-tune job"""
|
|
182
|
+
|
|
180
183
|
suffix: Optional[str] = None
|
|
181
184
|
"""Suffix added to the fine-tuned model name"""
|
|
182
185
|
|
|
@@ -178,6 +178,9 @@ class Data(BaseModel):
|
|
|
178
178
|
progress: Optional[DataProgress] = None
|
|
179
179
|
"""Progress information for the fine-tuning job"""
|
|
180
180
|
|
|
181
|
+
started_at: Optional[datetime] = None
|
|
182
|
+
"""Start timestamp of the current stage of the fine-tune job"""
|
|
183
|
+
|
|
181
184
|
suffix: Optional[str] = None
|
|
182
185
|
"""Suffix added to the fine-tuned model name"""
|
|
183
186
|
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Manually added to minimize breaking changes from V1
|
|
2
|
+
from ..lib.types.fine_tuning import (
|
|
3
|
+
COMPLETED_STATUSES as COMPLETED_STATUSES,
|
|
4
|
+
TrainingType as TrainingType,
|
|
5
|
+
FinetuneEvent as FinetuneEvent,
|
|
6
|
+
TrainingMethod as TrainingMethod,
|
|
7
|
+
FinetuneRequest as FinetuneRequest,
|
|
8
|
+
EmptyLRScheduler as EmptyLRScheduler,
|
|
9
|
+
FinetuneProgress as FinetuneProgress,
|
|
10
|
+
FinetuneResponse as FinetuneResponse,
|
|
11
|
+
FullTrainingType as FullTrainingType,
|
|
12
|
+
LoRATrainingType as LoRATrainingType,
|
|
13
|
+
CosineLRScheduler as CosineLRScheduler,
|
|
14
|
+
FinetuneEventType as FinetuneEventType,
|
|
15
|
+
FinetuneJobStatus as FinetuneJobStatus,
|
|
16
|
+
LinearLRScheduler as LinearLRScheduler,
|
|
17
|
+
TrainingMethodDPO as TrainingMethodDPO,
|
|
18
|
+
TrainingMethodSFT as TrainingMethodSFT,
|
|
19
|
+
FinetuneEventLevels as FinetuneEventLevels,
|
|
20
|
+
FinetuneLRScheduler as FinetuneLRScheduler,
|
|
21
|
+
CosineLRSchedulerArgs as CosineLRSchedulerArgs,
|
|
22
|
+
LinearLRSchedulerArgs as LinearLRSchedulerArgs,
|
|
23
|
+
FinetuneTrainingLimits as FinetuneTrainingLimits,
|
|
24
|
+
FinetuneMultimodalParams as FinetuneMultimodalParams,
|
|
25
|
+
FinetuneFullTrainingLimits as FinetuneFullTrainingLimits,
|
|
26
|
+
FinetuneLoraTrainingLimits as FinetuneLoraTrainingLimits,
|
|
27
|
+
)
|
together/types/models.py
ADDED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: together
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.0a15
|
|
4
4
|
Summary: The official Python library for the together API
|
|
5
5
|
Project-URL: Homepage, https://github.com/togethercomputer/together-py
|
|
6
6
|
Project-URL: Repository, https://github.com/togethercomputer/together-py
|
|
@@ -680,6 +680,47 @@ together models list
|
|
|
680
680
|
together models upload --model-name my-org/my-model --model-source s3-or-hugging-face
|
|
681
681
|
```
|
|
682
682
|
|
|
683
|
+
### Clusters
|
|
684
|
+
|
|
685
|
+
```bash
|
|
686
|
+
# Help
|
|
687
|
+
together beta clusters --help
|
|
688
|
+
|
|
689
|
+
# Create a cluster
|
|
690
|
+
together beta clusters create
|
|
691
|
+
|
|
692
|
+
# List clusters
|
|
693
|
+
together beta clusters list
|
|
694
|
+
|
|
695
|
+
# Retrieve cluster details
|
|
696
|
+
together beta clusters retrieve [cluster-id]
|
|
697
|
+
|
|
698
|
+
# Update a cluster
|
|
699
|
+
together beta clusters update [cluster-id]
|
|
700
|
+
|
|
701
|
+
# Retrieve Together cluster configuration options such as regions, gpu types and drivers available
|
|
702
|
+
together beta clusters list-regions
|
|
703
|
+
```
|
|
704
|
+
|
|
705
|
+
##### Cluster Storage
|
|
706
|
+
|
|
707
|
+
```bash
|
|
708
|
+
# Help
|
|
709
|
+
together beta clusters storage --help
|
|
710
|
+
|
|
711
|
+
# Create cluster storage volume
|
|
712
|
+
together beta clusters storage create
|
|
713
|
+
|
|
714
|
+
# List storage volumes
|
|
715
|
+
together beta clusters storage list
|
|
716
|
+
|
|
717
|
+
# Retrieve storage volume
|
|
718
|
+
together beta clusters storage retrieve [storage-id]
|
|
719
|
+
|
|
720
|
+
# Delete storage volume
|
|
721
|
+
together beta clusters storage delete [storage-id]
|
|
722
|
+
```
|
|
723
|
+
|
|
683
724
|
## Contributing
|
|
684
725
|
|
|
685
726
|
See [the contributing documentation](https://github.com/togethercomputer/together-py/tree/main/./CONTRIBUTING.md).
|
|
@@ -11,7 +11,9 @@ together/_resource.py,sha256=-ZTq9O5qf2YsgjJk_gwJs-CM_OG4p6gdMLcNWjuxFwQ,1112
|
|
|
11
11
|
together/_response.py,sha256=lvqEsCbpD8SRJTjlhhUFGbnLUR_4-Qva-OApxfVdiY4,28800
|
|
12
12
|
together/_streaming.py,sha256=sk6fVYbpdO3Y-0S5iwZTHQJ3N24UkK0KaupgUTftWZk,11825
|
|
13
13
|
together/_types.py,sha256=LzaeqN09mUAEvRg_XrLzihdOaW0D_R9qrG7jKsFjnQY,7297
|
|
14
|
-
together/_version.py,sha256=
|
|
14
|
+
together/_version.py,sha256=P0JKaP9hXRQvFGEJXn_3phiGCQgJzd5eS9uyqvDXvis,169
|
|
15
|
+
together/constants.py,sha256=stG63GqzAVgq1701eqcD53tfNsQ6ZRi5cUvdYn8qS0g,1304
|
|
16
|
+
together/error.py,sha256=49MjRZcbVP0RXYfd2pwWd7ZRcO_xX0h18WISkU9BcTk,452
|
|
15
17
|
together/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
18
|
together/_utils/__init__.py,sha256=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,2305
|
|
17
19
|
together/_utils/_compat.py,sha256=rN17SSvjMoQE1GmKFTLniRuG1sKj2WAD5VjdLPeRlF0,1231
|
|
@@ -36,7 +38,7 @@ together/lib/cli/api/evals.py,sha256=KkSvz2wIYmPQ3sFQBte6inNBZt1aptIkMVL5TKWTW5k
|
|
|
36
38
|
together/lib/cli/api/files.py,sha256=HbflC45PpzBIF0CE0TLucQaVr319ScL05VyAFKf2T6Y,3596
|
|
37
39
|
together/lib/cli/api/fine_tuning.py,sha256=Tb4J9_LnHZHp73zNW1lHNSl_0UQfOd0yi9-IvMHBY08,22863
|
|
38
40
|
together/lib/cli/api/models.py,sha256=Jfrl7gcbWAkbBQ1i1gCy485HHT2C4C784OMaaHZPiPw,4084
|
|
39
|
-
together/lib/cli/api/utils.py,sha256=
|
|
41
|
+
together/lib/cli/api/utils.py,sha256=r7Aifi6KdzqwlQrHLVrAeYp54EvU7HS07VNkE_DCmA8,5749
|
|
40
42
|
together/lib/cli/api/beta/beta.py,sha256=JA9dJVuqFmoqUyM6Rx4sqfrmQWjEEaHQ9xjmlL908U0,173
|
|
41
43
|
together/lib/cli/api/beta/clusters.py,sha256=yDV1ut09OtUn4XrilAfaKWhtlMbW99FsuYXTgJl2dao,11427
|
|
42
44
|
together/lib/cli/api/beta/clusters_storage.py,sha256=ydVLsylsQIEyaKAURS-NDmyUtuRaeIl3Vn-0mCA4PdQ,3804
|
|
@@ -45,7 +47,7 @@ together/lib/resources/files.py,sha256=Z_D23IvjYYWBpYrfYolCNfUslJBcE4PnU0WtuLsN6
|
|
|
45
47
|
together/lib/resources/fine_tuning.py,sha256=A-hOJqcGSPzw24wwX6K27OqV3B-u43dfdrK4nj4ItTg,13088
|
|
46
48
|
together/lib/types/__init__.py,sha256=1-kHsAp9Sh9HxjTGKfdHnF1nTS_cM_Tazv-3Z9hrEbY,205
|
|
47
49
|
together/lib/types/error.py,sha256=i-rnTZPRZuJDUf1lM-52abG2JHWOUBTCh55zPNGoakg,135
|
|
48
|
-
together/lib/types/fine_tuning.py,sha256=
|
|
50
|
+
together/lib/types/fine_tuning.py,sha256=sQ2DGDEEXegdKb9Bj4HqDFMZKURgHHSV7aeooZIMyPQ,13434
|
|
49
51
|
together/lib/utils/__init__.py,sha256=F_CVqnvK-aEshMg-5FLFincPbhuVbsM6IKSCNyEByKs,545
|
|
50
52
|
together/lib/utils/_log.py,sha256=mo5tDhyFTNqEj8MOcpy3bLmLBcC0OQ67orTw_nxFdcU,1930
|
|
51
53
|
together/lib/utils/files.py,sha256=CVTFwI7yMzpaQ-GsGr1tD4O2kXA-i369Pi0eMnlWMmI,31854
|
|
@@ -82,7 +84,7 @@ together/resources/chat/completions.py,sha256=u45dEoSvgyJZ86yI3-CZzPDOVOjBi_h9Za
|
|
|
82
84
|
together/resources/code_interpreter/__init__.py,sha256=qeNVuBUuYy66RDhyh4RDx_xsf0gTMIrrZkZHpkPy9r0,1146
|
|
83
85
|
together/resources/code_interpreter/code_interpreter.py,sha256=ZrWQIn5FO-uau3qTt_HhsHiaclM_ZNfOqZI_AWT2SMk,10373
|
|
84
86
|
together/resources/code_interpreter/sessions.py,sha256=Sl8X6-r1gds2VHhzpjPhfwYNTciZCJxAH-YjJerA_eU,5020
|
|
85
|
-
together/types/__init__.py,sha256=
|
|
87
|
+
together/types/__init__.py,sha256=jLekFqaxSa4kUXhNgOtelgmVcliTUAQBHQtZeftIrCE,5208
|
|
86
88
|
together/types/audio_speech_stream_chunk.py,sha256=npxlsMce0q4_VoJaZzfSh982TYTM0-j-zmhyI-9hP5o,346
|
|
87
89
|
together/types/autoscaling.py,sha256=nlOvbwrsgJQsz2ALlunp9o4sRdAmLe1tinXKSBNa2Yg,447
|
|
88
90
|
together/types/autoscaling_param.py,sha256=GNyqO4jV5zQie2BmOjfwpESxJ9IyVcz6p9wAxGIf6F0,544
|
|
@@ -90,6 +92,7 @@ together/types/batch_create_params.py,sha256=2vFTT9PsqBn_F8qvnQNCRahrdeFl0MMhUg5
|
|
|
90
92
|
together/types/batch_create_response.py,sha256=wJgUqyNbJ8oPwgUWpHHWkJx65bN6llbudAhF94gaKWs,325
|
|
91
93
|
together/types/batch_job.py,sha256=3z7fVqcWcm38QGqy9O3mTJvPiuvfc6jZDYTIQ-VrFso,1138
|
|
92
94
|
together/types/batch_list_response.py,sha256=eOYgKgpo05jSVx_-79YCKQhsj2pdxZ8mEaOBPptrwC8,264
|
|
95
|
+
together/types/chat_completions.py,sha256=qAxgx6keitQpyufab-QbCadMYFgJeA9ectBb2jsm5oU,285
|
|
93
96
|
together/types/code_interpreter_execute_params.py,sha256=n9YEbz2W5xCRUP2Coe6xYS914sUgP19Y4XolYa-iRao,1182
|
|
94
97
|
together/types/completion.py,sha256=9t9bQc1x3s0LUGZ19fifWUosSGPTllO7kviY2Hvpkns,897
|
|
95
98
|
together/types/completion_chunk.py,sha256=2GgVkgdnm7Ne-MnbFLakVTMIISkwXtAdn-CWdQ76D0U,1354
|
|
@@ -102,6 +105,7 @@ together/types/endpoint_list_avzones_response.py,sha256=LbzRkG7snD7Swy-t0E0MLXrl
|
|
|
102
105
|
together/types/endpoint_list_params.py,sha256=83Mg5beLYX_ipn1X_izk7hDIO8q8YNEL-tjsv5AcNXo,506
|
|
103
106
|
together/types/endpoint_list_response.py,sha256=LPyv8np_HctSW0QKstC8k7vF0RAejb6X9N2JowZtaEY,1010
|
|
104
107
|
together/types/endpoint_update_params.py,sha256=ONGRuPZQe_C40N5tfnu-HyPBNFvPRWeA3A9lEtrligc,780
|
|
108
|
+
together/types/endpoints.py,sha256=drlKQR6SkNSD3iNrh9VahetS0492EBDGxhOMpAr974E,153
|
|
105
109
|
together/types/eval_create_params.py,sha256=KH4Jn8jzyufANXm1EQ5Cu4DkzQlqmRa7_t4m5c9QHHw,8059
|
|
106
110
|
together/types/eval_create_response.py,sha256=s8tjFerVLIm8J4-qmp-kZ-yP65PsjWZ2AtK-ObGUv30,429
|
|
107
111
|
together/types/eval_list_params.py,sha256=pdKw4pK5FQMnyY76L7Yj2Q-mOXtJv9rg9BU3iAud4V0,483
|
|
@@ -114,7 +118,8 @@ together/types/file_list.py,sha256=AE9muto7B4HyABgt3k9obSbUG1GW09pVvB0POnEQeUg,2
|
|
|
114
118
|
together/types/file_purpose.py,sha256=9sHEbQ1qy4V99KMT7R5Ya_VXutu1ZZG1pho-w2ZZ9OM,302
|
|
115
119
|
together/types/file_response.py,sha256=Abmu-Ph-masbhAFePB64VhiswHEFmExWF34jaiTm4Lg,626
|
|
116
120
|
together/types/file_type.py,sha256=lrvFtcJr0Wn5thWP4NihmrmK23AouK2e6Ev4LCCPg5A,218
|
|
117
|
-
together/types/
|
|
121
|
+
together/types/files.py,sha256=2eB1LRTt8p1hwXGiln42qunPT-JVY2me5tpdPjFZwVQ,236
|
|
122
|
+
together/types/fine_tuning_cancel_response.py,sha256=1fbSVkAg0_hgMhH2uLiv11FqiYo1czf3h4QF5J0btVs,5917
|
|
118
123
|
together/types/fine_tuning_content_params.py,sha256=_5rqZ2lk6FShmX-5Hj4A9jQdpPZP6lcgjXvnrC30G8k,711
|
|
119
124
|
together/types/fine_tuning_delete_params.py,sha256=YwUcN_gFl9N2zuUJqyOrE0ngONL2N_OgfVw6h-sH2RE,273
|
|
120
125
|
together/types/fine_tuning_delete_response.py,sha256=oWoJM51-2b_RIINhJSMyMelSKQkHFYrJjDLeD51dUgo,323
|
|
@@ -122,10 +127,11 @@ together/types/fine_tuning_estimate_price_params.py,sha256=LIlP1Z5C1EAQgOg3b3BZ1
|
|
|
122
127
|
together/types/fine_tuning_estimate_price_response.py,sha256=lA2MUesE_C_Ia8U-rJRsqRGRzkZJno2dsIsrMmoQMIo,770
|
|
123
128
|
together/types/fine_tuning_list_checkpoints_response.py,sha256=9S0kRl7ItqFU6CeodrB9jb1zgf7-Ehb7VGjsbKq_hBY,377
|
|
124
129
|
together/types/fine_tuning_list_events_response.py,sha256=DeDJLF1IxQV47HOwfuVt8Zis5W2CKs3iKkKvwDxyswk,309
|
|
125
|
-
together/types/fine_tuning_list_response.py,sha256=
|
|
130
|
+
together/types/fine_tuning_list_response.py,sha256=9z6-9Tg4LX__T3V9SEm-NsbnBmz7E3L1-EiQLi61UQE,6103
|
|
131
|
+
together/types/finetune.py,sha256=fTMToJXPfBAD7L19WpkaimGtytRcIL80Cz2Fmhnbsps,1198
|
|
126
132
|
together/types/finetune_event.py,sha256=0apAXe6Anx2_ffse2pOBJDxngCeuSvuDMYczZ0DtzZg,787
|
|
127
133
|
together/types/finetune_event_type.py,sha256=Bm4lkBhsLI_kaD5yabsvW6BpnjXzZO_lwDtiEeMNXnw,824
|
|
128
|
-
together/types/finetune_response.py,sha256=
|
|
134
|
+
together/types/finetune_response.py,sha256=yRia3VGyLbqUnxpHz4idMKZXglXlVQHrt9tJL_-YwpM,5018
|
|
129
135
|
together/types/hardware_list_params.py,sha256=BbfiigtdQE0QNGFGr6o-Twg912x_riH5mbUNpZWYWO4,435
|
|
130
136
|
together/types/hardware_list_response.py,sha256=KfGhnEy7qEW2Bzt4Q8b-JSvxG-IKIIFfcpWEQHS9YdM,1732
|
|
131
137
|
together/types/image_data_b64.py,sha256=pLY7JDBb1HF1T29ACbae_xn6JQfttpqQVeG_jJeenZU,284
|
|
@@ -140,6 +146,7 @@ together/types/model_list_response.py,sha256=MvJLqK_tczrk8kCijb0HChLs706_pXJdf1E
|
|
|
140
146
|
together/types/model_object.py,sha256=ixXrw0t4ZyGaINI69nG0uUVGjgTG9DNhlzeUaNxW7GY,745
|
|
141
147
|
together/types/model_upload_params.py,sha256=8_mcHCUkmvTy0psgzTGZV2Gkw6RvNYNFVRo401i4Nfo,1033
|
|
142
148
|
together/types/model_upload_response.py,sha256=rDG9A0Xp6ZTcmvvybUqWTChVopbUXinQKIyt4QcPtms,482
|
|
149
|
+
together/types/models.py,sha256=8kMkbf4robRU0pPBlgqidCeQWzDa4M9bpWr9ErJuyYk,108
|
|
143
150
|
together/types/rerank_create_params.py,sha256=0cQRr-S7WnsYG0GQlcLeQJ__BzGWHGHdIMVr66-j1ws,1127
|
|
144
151
|
together/types/rerank_create_response.py,sha256=KzRWbo578R3yY65tnJ82CA1Ntp_3eJBVKl4WSfoFVuI,773
|
|
145
152
|
together/types/tool_choice.py,sha256=oO-sDUozOcrFXZ7I8OAUXIoTKDagv2rV9jU1p2DzHzg,375
|
|
@@ -183,8 +190,8 @@ together/types/chat/chat_completion_warning.py,sha256=_Dp7YKlxyY2HeZopTvT-Go7qqK
|
|
|
183
190
|
together/types/chat/completion_create_params.py,sha256=GpOQIpL2hODOV-iPoilHxo5UYP_KHJ-zdZMP-VW87-g,13755
|
|
184
191
|
together/types/code_interpreter/__init__.py,sha256=dAXfb3ryLMtcBalCfxxNu2wJVswVP8G1xXryZnahPQY,201
|
|
185
192
|
together/types/code_interpreter/session_list_response.py,sha256=TRxLGFTmIY-KLpStKjJtsrm4EI6BBvakpx43B6pkhnw,662
|
|
186
|
-
together-2.0.
|
|
187
|
-
together-2.0.
|
|
188
|
-
together-2.0.
|
|
189
|
-
together-2.0.
|
|
190
|
-
together-2.0.
|
|
193
|
+
together-2.0.0a15.dist-info/METADATA,sha256=r8NiFYDnCXkjrQ5-nzkc2HiRBbkKCmBPkUgDqPUXXlQ,21173
|
|
194
|
+
together-2.0.0a15.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
195
|
+
together-2.0.0a15.dist-info/entry_points.txt,sha256=4f4RAX89wQkx3AnfHXiGrKyg2fCPnwMd2UdPX48OczA,55
|
|
196
|
+
together-2.0.0a15.dist-info/licenses/LICENSE,sha256=oSs-kmJHhMue4vIIPIxQMvXou9PbxgNdIX-r_AwfO7c,11338
|
|
197
|
+
together-2.0.0a15.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|