together 2.0.0a13__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.
Files changed (46) hide show
  1. together/_client.py +38 -0
  2. together/_version.py +1 -1
  3. together/constants.py +34 -0
  4. together/error.py +16 -0
  5. together/lib/cli/api/beta/beta.py +12 -0
  6. together/lib/cli/api/beta/clusters.py +357 -0
  7. together/lib/cli/api/beta/clusters_storage.py +152 -0
  8. together/lib/cli/api/utils.py +41 -5
  9. together/lib/cli/cli.py +2 -0
  10. together/lib/types/fine_tuning.py +3 -0
  11. together/resources/__init__.py +14 -0
  12. together/resources/beta/__init__.py +33 -0
  13. together/resources/beta/beta.py +102 -0
  14. together/resources/beta/clusters/__init__.py +33 -0
  15. together/resources/beta/clusters/clusters.py +628 -0
  16. together/resources/beta/clusters/storage.py +490 -0
  17. together/types/__init__.py +12 -1
  18. together/types/beta/__init__.py +12 -0
  19. together/types/beta/cluster.py +93 -0
  20. together/types/beta/cluster_create_params.py +51 -0
  21. together/types/beta/cluster_create_response.py +9 -0
  22. together/types/beta/cluster_delete_response.py +9 -0
  23. together/types/beta/cluster_list_regions_response.py +21 -0
  24. together/types/beta/cluster_list_response.py +12 -0
  25. together/types/beta/cluster_update_params.py +13 -0
  26. together/types/beta/cluster_update_response.py +9 -0
  27. together/types/beta/clusters/__init__.py +10 -0
  28. together/types/beta/clusters/cluster_storage.py +13 -0
  29. together/types/beta/clusters/storage_create_params.py +17 -0
  30. together/types/beta/clusters/storage_create_response.py +9 -0
  31. together/types/beta/clusters/storage_delete_response.py +9 -0
  32. together/types/beta/clusters/storage_list_response.py +12 -0
  33. together/types/beta/clusters/storage_update_params.py +13 -0
  34. together/types/chat_completions.py +7 -0
  35. together/types/endpoints.py +4 -0
  36. together/types/files.py +8 -0
  37. together/types/fine_tuning_cancel_response.py +3 -0
  38. together/types/fine_tuning_list_response.py +3 -0
  39. together/types/finetune.py +27 -0
  40. together/types/finetune_response.py +2 -0
  41. together/types/models.py +2 -0
  42. {together-2.0.0a13.dist-info → together-2.0.0a15.dist-info}/METADATA +55 -8
  43. {together-2.0.0a13.dist-info → together-2.0.0a15.dist-info}/RECORD +46 -15
  44. {together-2.0.0a13.dist-info → together-2.0.0a15.dist-info}/WHEEL +0 -0
  45. {together-2.0.0a13.dist-info → together-2.0.0a15.dist-info}/entry_points.txt +0 -0
  46. {together-2.0.0a13.dist-info → together-2.0.0a15.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,21 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing import List
4
+
5
+ from ..._models import BaseModel
6
+
7
+ __all__ = ["ClusterListRegionsResponse", "Region"]
8
+
9
+
10
+ class Region(BaseModel):
11
+ id: str
12
+
13
+ availability_zones: List[str]
14
+
15
+ driver_versions: List[str]
16
+
17
+ name: str
18
+
19
+
20
+ class ClusterListRegionsResponse(BaseModel):
21
+ regions: List[Region]
@@ -0,0 +1,12 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing import List
4
+
5
+ from .cluster import Cluster
6
+ from ..._models import BaseModel
7
+
8
+ __all__ = ["ClusterListResponse"]
9
+
10
+
11
+ class ClusterListResponse(BaseModel):
12
+ clusters: List[Cluster]
@@ -0,0 +1,13 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from __future__ import annotations
4
+
5
+ from typing_extensions import Literal, TypedDict
6
+
7
+ __all__ = ["ClusterUpdateParams"]
8
+
9
+
10
+ class ClusterUpdateParams(TypedDict, total=False):
11
+ cluster_type: Literal["KUBERNETES", "SLURM"]
12
+
13
+ num_gpus: int
@@ -0,0 +1,9 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from ..._models import BaseModel
4
+
5
+ __all__ = ["ClusterUpdateResponse"]
6
+
7
+
8
+ class ClusterUpdateResponse(BaseModel):
9
+ cluster_id: str
@@ -0,0 +1,10 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from __future__ import annotations
4
+
5
+ from .cluster_storage import ClusterStorage as ClusterStorage
6
+ from .storage_create_params import StorageCreateParams as StorageCreateParams
7
+ from .storage_list_response import StorageListResponse as StorageListResponse
8
+ from .storage_update_params import StorageUpdateParams as StorageUpdateParams
9
+ from .storage_create_response import StorageCreateResponse as StorageCreateResponse
10
+ from .storage_delete_response import StorageDeleteResponse as StorageDeleteResponse
@@ -0,0 +1,13 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from ...._models import BaseModel
4
+
5
+ __all__ = ["ClusterStorage"]
6
+
7
+
8
+ class ClusterStorage(BaseModel):
9
+ size_tib: int
10
+
11
+ volume_id: str
12
+
13
+ volume_name: str
@@ -0,0 +1,17 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from __future__ import annotations
4
+
5
+ from typing_extensions import Required, TypedDict
6
+
7
+ __all__ = ["StorageCreateParams"]
8
+
9
+
10
+ class StorageCreateParams(TypedDict, total=False):
11
+ region: Required[str]
12
+ """Region name. Usable regions can be found from `client.clusters.list_regions()`"""
13
+
14
+ size_tib: Required[int]
15
+ """Volume size in whole tebibytes (TiB)."""
16
+
17
+ volume_name: Required[str]
@@ -0,0 +1,9 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from ...._models import BaseModel
4
+
5
+ __all__ = ["StorageCreateResponse"]
6
+
7
+
8
+ class StorageCreateResponse(BaseModel):
9
+ volume_id: str
@@ -0,0 +1,9 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from ...._models import BaseModel
4
+
5
+ __all__ = ["StorageDeleteResponse"]
6
+
7
+
8
+ class StorageDeleteResponse(BaseModel):
9
+ success: bool
@@ -0,0 +1,12 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing import List
4
+
5
+ from ...._models import BaseModel
6
+ from .cluster_storage import ClusterStorage
7
+
8
+ __all__ = ["StorageListResponse"]
9
+
10
+
11
+ class StorageListResponse(BaseModel):
12
+ volumes: List[ClusterStorage]
@@ -0,0 +1,13 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from __future__ import annotations
4
+
5
+ from typing_extensions import TypedDict
6
+
7
+ __all__ = ["StorageUpdateParams"]
8
+
9
+
10
+ class StorageUpdateParams(TypedDict, total=False):
11
+ size_tib: int
12
+
13
+ volume_id: str
@@ -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
@@ -0,0 +1,4 @@
1
+ # Manually added to minimize breaking changes from V1
2
+ from together.types import DedicatedEndpoint as DedicatedEndpoint
3
+
4
+ ListEndpoint = DedicatedEndpoint
@@ -0,0 +1,8 @@
1
+ # Manually added to minimize breaking changes from V1
2
+ from . import (
3
+ FileList as FileList,
4
+ FileType as FileType,
5
+ FilePurpose as FilePurpose,
6
+ FileResponse as FileResponse,
7
+ FileDeleteResponse as FileDeleteResponse,
8
+ )
@@ -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
+ )
@@ -174,6 +174,8 @@ class FinetuneResponse(BaseModel):
174
174
 
175
175
  queue_depth: Optional[int] = None
176
176
 
177
+ started_at: Optional[datetime] = None
178
+
177
179
  token_count: Optional[int] = None
178
180
 
179
181
  total_price: Optional[int] = None
@@ -0,0 +1,2 @@
1
+ # Manually added to minimize breaking changes from V1
2
+ from together.types import ModelObject as ModelObject
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: together
3
- Version: 2.0.0a13
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
@@ -232,15 +232,21 @@ from together import Together
232
232
 
233
233
  client = Together()
234
234
 
235
- dedicated_endpoint = client.endpoints.create(
236
- autoscaling={
237
- "max_replicas": 5,
238
- "min_replicas": 2,
235
+ cluster = client.beta.clusters.create(
236
+ billing_type="RESERVED",
237
+ cluster_name="cluster_name",
238
+ driver_version="CUDA_12_5_555",
239
+ duration_days=0,
240
+ gpu_type="H100_SXM",
241
+ num_gpus=0,
242
+ region="us-central-8",
243
+ shared_volume={
244
+ "region": "region",
245
+ "size_tib": 0,
246
+ "volume_name": "volume_name",
239
247
  },
240
- hardware="1x_nvidia_a100_80gb_sxm",
241
- model="meta-llama/Llama-3-8b-chat-hf",
242
248
  )
243
- print(dedicated_endpoint.autoscaling)
249
+ print(cluster.shared_volume)
244
250
  ```
245
251
 
246
252
  The async client uses the exact same interface. If you pass a [`PathLike`](https://docs.python.org/3/library/os.html#os.PathLike) instance, the file contents will be read asynchronously automatically.
@@ -674,6 +680,47 @@ together models list
674
680
  together models upload --model-name my-org/my-model --model-source s3-or-hugging-face
675
681
  ```
676
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
+
677
724
  ## Contributing
678
725
 
679
726
  See [the contributing documentation](https://github.com/togethercomputer/together-py/tree/main/./CONTRIBUTING.md).
@@ -1,6 +1,6 @@
1
1
  together/__init__.py,sha256=ghwEH6EUrPERUwHVSXaCJVqS7QmLN7NsUxKJNXQrOYM,2842
2
2
  together/_base_client.py,sha256=U6Lhqesx9l1qhaYKaP2jR-_mIyqbNhAOo2r2bgTQegI,67249
3
- together/_client.py,sha256=Nw2fyh2kf3RABNaHuqWKKhTujaHttGXoUZENECGaqyI,37788
3
+ together/_client.py,sha256=SdKbatStb_gD9PQ1VFVs8_njHi7XJLOsiTjiloL4R1Q,39056
4
4
  together/_compat.py,sha256=DQBVORjFb33zch24jzkhM14msvnzY7mmSmgDLaVFUM8,6562
5
5
  together/_constants.py,sha256=i39tJ7BP8nnqvdHFJwMhN6LWR6-jg5LLYiFudwCD3Ic,463
6
6
  together/_exceptions.py,sha256=cpi7uHZjLovYHSeH_aTV7vmDj3dLx7mNN6hEdOY1vjo,3224
@@ -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=BExhELPV8VqVuQbk2T-lGqnaFEZgTxL2XCJuRpZaadk,169
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
@@ -29,26 +31,29 @@ together/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
29
31
  together/lib/__init__.py,sha256=Qtdi6geFNzxE-F51eNDk1ESXYyYDt8b82MR1POANQBQ,394
30
32
  together/lib/constants.py,sha256=w8-zVl8XZiJxqMdhbWekigHJ0JUMPoV9R3ejUHIcUJk,2237
31
33
  together/lib/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
32
- together/lib/cli/cli.py,sha256=bNzYeLF8JdlMnSmIqFClp28MzjLGCwQ9hqSpaXHBQ0s,1939
34
+ together/lib/cli/cli.py,sha256=BYoWSu5FGedL5FMpO4-4e14Cbc6_X2Y1tItUjdTcMpY,2010
33
35
  together/lib/cli/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
36
  together/lib/cli/api/endpoints.py,sha256=MyliUrTuJWw2qFd80J27pFs9xTazIVAP0mqgRYxdVsw,14851
35
37
  together/lib/cli/api/evals.py,sha256=KkSvz2wIYmPQ3sFQBte6inNBZt1aptIkMVL5TKWTW5k,19074
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=j4IYurqcoqisstAQuqWMsUKbMQITNX8ax2Vv6U6qF7I,4381
41
+ together/lib/cli/api/utils.py,sha256=r7Aifi6KdzqwlQrHLVrAeYp54EvU7HS07VNkE_DCmA8,5749
42
+ together/lib/cli/api/beta/beta.py,sha256=JA9dJVuqFmoqUyM6Rx4sqfrmQWjEEaHQ9xjmlL908U0,173
43
+ together/lib/cli/api/beta/clusters.py,sha256=yDV1ut09OtUn4XrilAfaKWhtlMbW99FsuYXTgJl2dao,11427
44
+ together/lib/cli/api/beta/clusters_storage.py,sha256=ydVLsylsQIEyaKAURS-NDmyUtuRaeIl3Vn-0mCA4PdQ,3804
40
45
  together/lib/resources/__init__.py,sha256=ystIb0pBHQLuwUBtHJwhRgtjK3_TV6K0KuM8NGuuNoU,172
41
46
  together/lib/resources/files.py,sha256=Z_D23IvjYYWBpYrfYolCNfUslJBcE4PnU0WtuLsN67M,37277
42
47
  together/lib/resources/fine_tuning.py,sha256=A-hOJqcGSPzw24wwX6K27OqV3B-u43dfdrK4nj4ItTg,13088
43
48
  together/lib/types/__init__.py,sha256=1-kHsAp9Sh9HxjTGKfdHnF1nTS_cM_Tazv-3Z9hrEbY,205
44
49
  together/lib/types/error.py,sha256=i-rnTZPRZuJDUf1lM-52abG2JHWOUBTCh55zPNGoakg,135
45
- together/lib/types/fine_tuning.py,sha256=gTB66x4jrmxyWuKJGcqX_4aYcI2iGgZvL3MzMLePDC8,13325
50
+ together/lib/types/fine_tuning.py,sha256=sQ2DGDEEXegdKb9Bj4HqDFMZKURgHHSV7aeooZIMyPQ,13434
46
51
  together/lib/utils/__init__.py,sha256=F_CVqnvK-aEshMg-5FLFincPbhuVbsM6IKSCNyEByKs,545
47
52
  together/lib/utils/_log.py,sha256=mo5tDhyFTNqEj8MOcpy3bLmLBcC0OQ67orTw_nxFdcU,1930
48
53
  together/lib/utils/files.py,sha256=CVTFwI7yMzpaQ-GsGr1tD4O2kXA-i369Pi0eMnlWMmI,31854
49
54
  together/lib/utils/serializer.py,sha256=wJwySGxAL0e1giZzFpl4hHH3s9lkoNN_yzu-P_jdRIo,287
50
55
  together/lib/utils/tools.py,sha256=rrpz3EXEVViou5GDPjVoCSt2zDPJYDzWYqTsVO1-OgI,2183
51
- together/resources/__init__.py,sha256=Cuiy4FcdrfUzb0N-jZbl8Phqjvlzt12Iq7BhI9tFsXw,7577
56
+ together/resources/__init__.py,sha256=GRjbTMmep-fxfaRYWazySFcfeZBaztG_skfnsSaAb1Q,8001
52
57
  together/resources/batches.py,sha256=FTdtVrCGstua94Imd5kqPhvzTBA8MdcFXuNb9gMha8Q,15386
53
58
  together/resources/completions.py,sha256=DHTQs7PLxjwWacEtRSmB2AKat3DaWotm8vz2Z7F_WDE,41505
54
59
  together/resources/embeddings.py,sha256=7EU6DZQd0Nm0Sh7x7v37QQOLNuLqNmcjdJAyOTckeRo,7447
@@ -68,13 +73,18 @@ together/resources/audio/speech.py,sha256=ZavAHDhi8rKzIQ0tRTv1UOIlUJQ5_ArvH3JG1J
68
73
  together/resources/audio/transcriptions.py,sha256=HtegYl2NUfx_fph-iqKkQ5GKm-3V4yQagBKueS8IIqI,13155
69
74
  together/resources/audio/translations.py,sha256=VPkg5ZUDw5LZwiaRYqEjETKwSMMU1odTeStl5PZSrls,10443
70
75
  together/resources/audio/voices.py,sha256=Lj9DtOcv_Dhaq3E5p7Oty1T_JkhrsGDZcDF91HHA3Yw,4905
76
+ together/resources/beta/__init__.py,sha256=x4J4_HKYN90Yqo_2cDzTi_SGNTIPlUFNUveTlKbF3CA,1002
77
+ together/resources/beta/beta.py,sha256=d6UtBwDImqbUPR572NFK9adPiiPeYKyLvp-y03NvGNk,3610
78
+ together/resources/beta/clusters/__init__.py,sha256=lW7cWkNzotbOcP4fSnFxvKlVrq1flpN4yC4hr-vuzKE,1041
79
+ together/resources/beta/clusters/clusters.py,sha256=XU_Xp4i2q5Llj7nvSAgscsL8AuQoRNGxL235cw1f_YE,24423
80
+ together/resources/beta/clusters/storage.py,sha256=79wtOoIkQP9Uch_gTfoAzprZhOSF9QxfdGREFTS_08E,18243
71
81
  together/resources/chat/__init__.py,sha256=BVAfz9TM3DT5W9f_mt0P9YRxL_MsUxKCWAH6u1iogmA,1041
72
82
  together/resources/chat/chat.py,sha256=aJQQ4Zlof2NlrG53auI5omXPJVdG3c_vwnEkj-ahLG4,3688
73
83
  together/resources/chat/completions.py,sha256=u45dEoSvgyJZ86yI3-CZzPDOVOjBi_h9ZaxXBhXZPaw,57312
74
84
  together/resources/code_interpreter/__init__.py,sha256=qeNVuBUuYy66RDhyh4RDx_xsf0gTMIrrZkZHpkPy9r0,1146
75
85
  together/resources/code_interpreter/code_interpreter.py,sha256=ZrWQIn5FO-uau3qTt_HhsHiaclM_ZNfOqZI_AWT2SMk,10373
76
86
  together/resources/code_interpreter/sessions.py,sha256=Sl8X6-r1gds2VHhzpjPhfwYNTciZCJxAH-YjJerA_eU,5020
77
- together/types/__init__.py,sha256=LyZBx2A_Y_thLZWIWs9MnVHP-dhOKzToYiZqk14AfXw,4753
87
+ together/types/__init__.py,sha256=jLekFqaxSa4kUXhNgOtelgmVcliTUAQBHQtZeftIrCE,5208
78
88
  together/types/audio_speech_stream_chunk.py,sha256=npxlsMce0q4_VoJaZzfSh982TYTM0-j-zmhyI-9hP5o,346
79
89
  together/types/autoscaling.py,sha256=nlOvbwrsgJQsz2ALlunp9o4sRdAmLe1tinXKSBNa2Yg,447
80
90
  together/types/autoscaling_param.py,sha256=GNyqO4jV5zQie2BmOjfwpESxJ9IyVcz6p9wAxGIf6F0,544
@@ -82,6 +92,7 @@ together/types/batch_create_params.py,sha256=2vFTT9PsqBn_F8qvnQNCRahrdeFl0MMhUg5
82
92
  together/types/batch_create_response.py,sha256=wJgUqyNbJ8oPwgUWpHHWkJx65bN6llbudAhF94gaKWs,325
83
93
  together/types/batch_job.py,sha256=3z7fVqcWcm38QGqy9O3mTJvPiuvfc6jZDYTIQ-VrFso,1138
84
94
  together/types/batch_list_response.py,sha256=eOYgKgpo05jSVx_-79YCKQhsj2pdxZ8mEaOBPptrwC8,264
95
+ together/types/chat_completions.py,sha256=qAxgx6keitQpyufab-QbCadMYFgJeA9ectBb2jsm5oU,285
85
96
  together/types/code_interpreter_execute_params.py,sha256=n9YEbz2W5xCRUP2Coe6xYS914sUgP19Y4XolYa-iRao,1182
86
97
  together/types/completion.py,sha256=9t9bQc1x3s0LUGZ19fifWUosSGPTllO7kviY2Hvpkns,897
87
98
  together/types/completion_chunk.py,sha256=2GgVkgdnm7Ne-MnbFLakVTMIISkwXtAdn-CWdQ76D0U,1354
@@ -94,6 +105,7 @@ together/types/endpoint_list_avzones_response.py,sha256=LbzRkG7snD7Swy-t0E0MLXrl
94
105
  together/types/endpoint_list_params.py,sha256=83Mg5beLYX_ipn1X_izk7hDIO8q8YNEL-tjsv5AcNXo,506
95
106
  together/types/endpoint_list_response.py,sha256=LPyv8np_HctSW0QKstC8k7vF0RAejb6X9N2JowZtaEY,1010
96
107
  together/types/endpoint_update_params.py,sha256=ONGRuPZQe_C40N5tfnu-HyPBNFvPRWeA3A9lEtrligc,780
108
+ together/types/endpoints.py,sha256=drlKQR6SkNSD3iNrh9VahetS0492EBDGxhOMpAr974E,153
97
109
  together/types/eval_create_params.py,sha256=KH4Jn8jzyufANXm1EQ5Cu4DkzQlqmRa7_t4m5c9QHHw,8059
98
110
  together/types/eval_create_response.py,sha256=s8tjFerVLIm8J4-qmp-kZ-yP65PsjWZ2AtK-ObGUv30,429
99
111
  together/types/eval_list_params.py,sha256=pdKw4pK5FQMnyY76L7Yj2Q-mOXtJv9rg9BU3iAud4V0,483
@@ -106,7 +118,8 @@ together/types/file_list.py,sha256=AE9muto7B4HyABgt3k9obSbUG1GW09pVvB0POnEQeUg,2
106
118
  together/types/file_purpose.py,sha256=9sHEbQ1qy4V99KMT7R5Ya_VXutu1ZZG1pho-w2ZZ9OM,302
107
119
  together/types/file_response.py,sha256=Abmu-Ph-masbhAFePB64VhiswHEFmExWF34jaiTm4Lg,626
108
120
  together/types/file_type.py,sha256=lrvFtcJr0Wn5thWP4NihmrmK23AouK2e6Ev4LCCPg5A,218
109
- together/types/fine_tuning_cancel_response.py,sha256=gTrdjW-UdZ1nN151V4YJeDlozcq8FhKEZV6fw2pCflU,5806
121
+ together/types/files.py,sha256=2eB1LRTt8p1hwXGiln42qunPT-JVY2me5tpdPjFZwVQ,236
122
+ together/types/fine_tuning_cancel_response.py,sha256=1fbSVkAg0_hgMhH2uLiv11FqiYo1czf3h4QF5J0btVs,5917
110
123
  together/types/fine_tuning_content_params.py,sha256=_5rqZ2lk6FShmX-5Hj4A9jQdpPZP6lcgjXvnrC30G8k,711
111
124
  together/types/fine_tuning_delete_params.py,sha256=YwUcN_gFl9N2zuUJqyOrE0ngONL2N_OgfVw6h-sH2RE,273
112
125
  together/types/fine_tuning_delete_response.py,sha256=oWoJM51-2b_RIINhJSMyMelSKQkHFYrJjDLeD51dUgo,323
@@ -114,10 +127,11 @@ together/types/fine_tuning_estimate_price_params.py,sha256=LIlP1Z5C1EAQgOg3b3BZ1
114
127
  together/types/fine_tuning_estimate_price_response.py,sha256=lA2MUesE_C_Ia8U-rJRsqRGRzkZJno2dsIsrMmoQMIo,770
115
128
  together/types/fine_tuning_list_checkpoints_response.py,sha256=9S0kRl7ItqFU6CeodrB9jb1zgf7-Ehb7VGjsbKq_hBY,377
116
129
  together/types/fine_tuning_list_events_response.py,sha256=DeDJLF1IxQV47HOwfuVt8Zis5W2CKs3iKkKvwDxyswk,309
117
- together/types/fine_tuning_list_response.py,sha256=vdVZBQ4V1GFzHUBiRR0drEvKg1ASTyG5g84P0oM1S_c,5992
130
+ together/types/fine_tuning_list_response.py,sha256=9z6-9Tg4LX__T3V9SEm-NsbnBmz7E3L1-EiQLi61UQE,6103
131
+ together/types/finetune.py,sha256=fTMToJXPfBAD7L19WpkaimGtytRcIL80Cz2Fmhnbsps,1198
118
132
  together/types/finetune_event.py,sha256=0apAXe6Anx2_ffse2pOBJDxngCeuSvuDMYczZ0DtzZg,787
119
133
  together/types/finetune_event_type.py,sha256=Bm4lkBhsLI_kaD5yabsvW6BpnjXzZO_lwDtiEeMNXnw,824
120
- together/types/finetune_response.py,sha256=klN6uuZt1tQ_PJ3rt7OSd_Cf7f0MuUnFZ4uJ6ISdrEU,4975
134
+ together/types/finetune_response.py,sha256=yRia3VGyLbqUnxpHz4idMKZXglXlVQHrt9tJL_-YwpM,5018
121
135
  together/types/hardware_list_params.py,sha256=BbfiigtdQE0QNGFGr6o-Twg912x_riH5mbUNpZWYWO4,435
122
136
  together/types/hardware_list_response.py,sha256=KfGhnEy7qEW2Bzt4Q8b-JSvxG-IKIIFfcpWEQHS9YdM,1732
123
137
  together/types/image_data_b64.py,sha256=pLY7JDBb1HF1T29ACbae_xn6JQfttpqQVeG_jJeenZU,284
@@ -132,6 +146,7 @@ together/types/model_list_response.py,sha256=MvJLqK_tczrk8kCijb0HChLs706_pXJdf1E
132
146
  together/types/model_object.py,sha256=ixXrw0t4ZyGaINI69nG0uUVGjgTG9DNhlzeUaNxW7GY,745
133
147
  together/types/model_upload_params.py,sha256=8_mcHCUkmvTy0psgzTGZV2Gkw6RvNYNFVRo401i4Nfo,1033
134
148
  together/types/model_upload_response.py,sha256=rDG9A0Xp6ZTcmvvybUqWTChVopbUXinQKIyt4QcPtms,482
149
+ together/types/models.py,sha256=8kMkbf4robRU0pPBlgqidCeQWzDa4M9bpWr9ErJuyYk,108
135
150
  together/types/rerank_create_params.py,sha256=0cQRr-S7WnsYG0GQlcLeQJ__BzGWHGHdIMVr66-j1ws,1127
136
151
  together/types/rerank_create_response.py,sha256=KzRWbo578R3yY65tnJ82CA1Ntp_3eJBVKl4WSfoFVuI,773
137
152
  together/types/tool_choice.py,sha256=oO-sDUozOcrFXZ7I8OAUXIoTKDagv2rV9jU1p2DzHzg,375
@@ -148,6 +163,22 @@ together/types/audio/transcription_create_response.py,sha256=z8_pzJlzYjP4QxJhwbK
148
163
  together/types/audio/translation_create_params.py,sha256=6-iHFC2K2o72K5tj0lfD-Lb69JzV4_5t_x2sdj2Pafs,1232
149
164
  together/types/audio/translation_create_response.py,sha256=T6SUCExVMin1qSGamHuiWGWS84MZ92tZPBHD7NYm4IU,1843
150
165
  together/types/audio/voice_list_response.py,sha256=vS2yvGBz7U2cxnJkEr7BewT7j5ActDjn99k3QhhEKk4,517
166
+ together/types/beta/__init__.py,sha256=R-G7zZw0WQOGXjL9vFS1Hzo4C-tf6flC60TEIQkSbD4,749
167
+ together/types/beta/cluster.py,sha256=QE0KMFrKikFbz5lZytvGqai9IBPAr_3PC_kqZd4yCcA,1636
168
+ together/types/beta/cluster_create_params.py,sha256=hbx5CVqA9EZyC8NX_TjKpHZ_wyK4yXL-uKghJoVpyB4,1510
169
+ together/types/beta/cluster_create_response.py,sha256=3NZHOdgeaTPY3f7T0u9YGuAnRIWoa4VWQe7PVFztqMU,219
170
+ together/types/beta/cluster_delete_response.py,sha256=rQ3dxuhlCqiuJBaVUUH51tNOkT6Xl-gnp0rRUxI6fOo,219
171
+ together/types/beta/cluster_list_regions_response.py,sha256=QzRO4ns6nrZvMcdTKF9Tjk7wcjXvYMQgiRztLIkEzxQ,391
172
+ together/types/beta/cluster_list_response.py,sha256=Vctdf-x12g1Y4vJHJ06GFCBXKaVdU6m8Pyb9OV8IM1Q,277
173
+ together/types/beta/cluster_update_params.py,sha256=C3OIOG1IyjV4_UeH24rzVbYAmSJiBT0Hs5bb3lXZCcU,328
174
+ together/types/beta/cluster_update_response.py,sha256=xl7aZ6sqY5Ssgx69OGzL_5ecZvfqUmxsr1leH-6pU9s,219
175
+ together/types/beta/clusters/__init__.py,sha256=ZRymRrNli_b5kAZNBY18EfY6ESfjDr9kqPbho5b2uHY,587
176
+ together/types/beta/clusters/cluster_storage.py,sha256=lcnTy4KkRrPOplMScRxFQUyrLJlZpFUl0L7OlW8HT6k,246
177
+ together/types/beta/clusters/storage_create_params.py,sha256=RbGMXdNQrKEegvez0Ev-wZLMKHcuy-BYmRPGsmYaa5I,485
178
+ together/types/beta/clusters/storage_create_response.py,sha256=IYezSxk3npJhLk-MnEdwtejcmNIy9rddIHdAk_0txU0,219
179
+ together/types/beta/clusters/storage_delete_response.py,sha256=U66KfWWOZpCgpQz0QriF-DF8UsTkW7d0_IeBP3kCqqU,218
180
+ together/types/beta/clusters/storage_list_response.py,sha256=wVyyFEGA-I9g-U9ii64tGGgIlPs0XZ9WNKwn-JbnBgc,299
181
+ together/types/beta/clusters/storage_update_params.py,sha256=urq_FjfZiYcmCo6qsmaVu1JG4RsOsSMYWwe_yDQ7w-A,289
151
182
  together/types/chat/__init__.py,sha256=XuRK_yunfmDRsbxLftYqP_yl51m8hpM6iqPGJGnUx_Y,997
152
183
  together/types/chat/chat_completion.py,sha256=0mpjMaALiX-LHSQbtwRdKmENpHcLBi_DQksT1kIM4xU,1361
153
184
  together/types/chat/chat_completion_chunk.py,sha256=UwCs1yDwJgRSOCwyvdbyqFyOAj0eXOSg-eswk5pSn-k,1381
@@ -159,8 +190,8 @@ together/types/chat/chat_completion_warning.py,sha256=_Dp7YKlxyY2HeZopTvT-Go7qqK
159
190
  together/types/chat/completion_create_params.py,sha256=GpOQIpL2hODOV-iPoilHxo5UYP_KHJ-zdZMP-VW87-g,13755
160
191
  together/types/code_interpreter/__init__.py,sha256=dAXfb3ryLMtcBalCfxxNu2wJVswVP8G1xXryZnahPQY,201
161
192
  together/types/code_interpreter/session_list_response.py,sha256=TRxLGFTmIY-KLpStKjJtsrm4EI6BBvakpx43B6pkhnw,662
162
- together-2.0.0a13.dist-info/METADATA,sha256=I61HjW1IsoROkaTO3yOCuer8UXQ8wqaEtZHUFfmE_ZA,20249
163
- together-2.0.0a13.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
164
- together-2.0.0a13.dist-info/entry_points.txt,sha256=4f4RAX89wQkx3AnfHXiGrKyg2fCPnwMd2UdPX48OczA,55
165
- together-2.0.0a13.dist-info/licenses/LICENSE,sha256=oSs-kmJHhMue4vIIPIxQMvXou9PbxgNdIX-r_AwfO7c,11338
166
- together-2.0.0a13.dist-info/RECORD,,
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,,