together 2.0.0a18__py3-none-any.whl → 2.0.0a19__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/_client.py +0 -38
- together/_version.py +1 -1
- together/lib/cli/api/beta/__init__.py +2 -0
- together/lib/cli/api/beta/jig/__init__.py +52 -0
- together/lib/cli/api/beta/jig/_config.py +170 -0
- together/lib/cli/api/beta/jig/jig.py +664 -0
- together/lib/cli/api/beta/jig/secrets.py +138 -0
- together/lib/cli/api/beta/jig/volumes.py +509 -0
- together/lib/cli/api/endpoints/hardware.py +3 -3
- together/lib/cli/api/models/upload.py +1 -1
- together/resources/__init__.py +0 -14
- together/resources/beta/jig/jig.py +8 -28
- together/resources/endpoints.py +103 -1
- together/types/__init__.py +2 -2
- together/types/beta/jig_deploy_params.py +1 -1
- together/types/beta/jig_retrieve_logs_params.py +0 -3
- together/types/{hardware_list_params.py → endpoint_list_hardware_params.py} +2 -2
- together/types/{hardware_list_response.py → endpoint_list_hardware_response.py} +2 -2
- {together-2.0.0a18.dist-info → together-2.0.0a19.dist-info}/METADATA +5 -1
- {together-2.0.0a18.dist-info → together-2.0.0a19.dist-info}/RECORD +23 -19
- together/resources/hardware.py +0 -181
- {together-2.0.0a18.dist-info → together-2.0.0a19.dist-info}/WHEEL +0 -0
- {together-2.0.0a18.dist-info → together-2.0.0a19.dist-info}/entry_points.txt +0 -0
- {together-2.0.0a18.dist-info → together-2.0.0a19.dist-info}/licenses/LICENSE +0 -0
together/resources/__init__.py
CHANGED
|
@@ -80,14 +80,6 @@ from .batches import (
|
|
|
80
80
|
BatchesResourceWithStreamingResponse,
|
|
81
81
|
AsyncBatchesResourceWithStreamingResponse,
|
|
82
82
|
)
|
|
83
|
-
from .hardware import (
|
|
84
|
-
HardwareResource,
|
|
85
|
-
AsyncHardwareResource,
|
|
86
|
-
HardwareResourceWithRawResponse,
|
|
87
|
-
AsyncHardwareResourceWithRawResponse,
|
|
88
|
-
HardwareResourceWithStreamingResponse,
|
|
89
|
-
AsyncHardwareResourceWithStreamingResponse,
|
|
90
|
-
)
|
|
91
83
|
from .endpoints import (
|
|
92
84
|
EndpointsResource,
|
|
93
85
|
AsyncEndpointsResource,
|
|
@@ -202,12 +194,6 @@ __all__ = [
|
|
|
202
194
|
"AsyncEndpointsResourceWithRawResponse",
|
|
203
195
|
"EndpointsResourceWithStreamingResponse",
|
|
204
196
|
"AsyncEndpointsResourceWithStreamingResponse",
|
|
205
|
-
"HardwareResource",
|
|
206
|
-
"AsyncHardwareResource",
|
|
207
|
-
"HardwareResourceWithRawResponse",
|
|
208
|
-
"AsyncHardwareResourceWithRawResponse",
|
|
209
|
-
"HardwareResourceWithStreamingResponse",
|
|
210
|
-
"AsyncHardwareResourceWithStreamingResponse",
|
|
211
197
|
"RerankResource",
|
|
212
198
|
"AsyncRerankResource",
|
|
213
199
|
"RerankResourceWithRawResponse",
|
|
@@ -260,7 +260,7 @@ class JigResource(SyncAPIResource):
|
|
|
260
260
|
def deploy(
|
|
261
261
|
self,
|
|
262
262
|
*,
|
|
263
|
-
gpu_type: Literal["h100-80gb", "
|
|
263
|
+
gpu_type: Literal["h100-80gb", "a100-80gb"],
|
|
264
264
|
image: str,
|
|
265
265
|
name: str,
|
|
266
266
|
args: SequenceNotStr[str] | Omit = omit,
|
|
@@ -417,7 +417,6 @@ class JigResource(SyncAPIResource):
|
|
|
417
417
|
self,
|
|
418
418
|
id: str,
|
|
419
419
|
*,
|
|
420
|
-
follow: bool | Omit = omit,
|
|
421
420
|
replica_id: str | Omit = omit,
|
|
422
421
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
423
422
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
@@ -426,14 +425,10 @@ class JigResource(SyncAPIResource):
|
|
|
426
425
|
extra_body: Body | None = None,
|
|
427
426
|
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
428
427
|
) -> DeploymentLogs:
|
|
429
|
-
"""
|
|
430
|
-
|
|
431
|
-
Use
|
|
432
|
-
follow=true to stream logs in real-time.
|
|
428
|
+
"""
|
|
429
|
+
Retrieve logs from a deployment, optionally filtered by replica ID.
|
|
433
430
|
|
|
434
431
|
Args:
|
|
435
|
-
follow: Stream logs in real-time (ndjson format)
|
|
436
|
-
|
|
437
432
|
replica_id: Replica ID to filter logs
|
|
438
433
|
|
|
439
434
|
extra_headers: Send extra headers
|
|
@@ -453,13 +448,7 @@ class JigResource(SyncAPIResource):
|
|
|
453
448
|
extra_query=extra_query,
|
|
454
449
|
extra_body=extra_body,
|
|
455
450
|
timeout=timeout,
|
|
456
|
-
query=maybe_transform(
|
|
457
|
-
{
|
|
458
|
-
"follow": follow,
|
|
459
|
-
"replica_id": replica_id,
|
|
460
|
-
},
|
|
461
|
-
jig_retrieve_logs_params.JigRetrieveLogsParams,
|
|
462
|
-
),
|
|
451
|
+
query=maybe_transform({"replica_id": replica_id}, jig_retrieve_logs_params.JigRetrieveLogsParams),
|
|
463
452
|
),
|
|
464
453
|
cast_to=DeploymentLogs,
|
|
465
454
|
)
|
|
@@ -675,7 +664,7 @@ class AsyncJigResource(AsyncAPIResource):
|
|
|
675
664
|
async def deploy(
|
|
676
665
|
self,
|
|
677
666
|
*,
|
|
678
|
-
gpu_type: Literal["h100-80gb", "
|
|
667
|
+
gpu_type: Literal["h100-80gb", "a100-80gb"],
|
|
679
668
|
image: str,
|
|
680
669
|
name: str,
|
|
681
670
|
args: SequenceNotStr[str] | Omit = omit,
|
|
@@ -832,7 +821,6 @@ class AsyncJigResource(AsyncAPIResource):
|
|
|
832
821
|
self,
|
|
833
822
|
id: str,
|
|
834
823
|
*,
|
|
835
|
-
follow: bool | Omit = omit,
|
|
836
824
|
replica_id: str | Omit = omit,
|
|
837
825
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
838
826
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
@@ -841,14 +829,10 @@ class AsyncJigResource(AsyncAPIResource):
|
|
|
841
829
|
extra_body: Body | None = None,
|
|
842
830
|
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
843
831
|
) -> DeploymentLogs:
|
|
844
|
-
"""
|
|
845
|
-
|
|
846
|
-
Use
|
|
847
|
-
follow=true to stream logs in real-time.
|
|
832
|
+
"""
|
|
833
|
+
Retrieve logs from a deployment, optionally filtered by replica ID.
|
|
848
834
|
|
|
849
835
|
Args:
|
|
850
|
-
follow: Stream logs in real-time (ndjson format)
|
|
851
|
-
|
|
852
836
|
replica_id: Replica ID to filter logs
|
|
853
837
|
|
|
854
838
|
extra_headers: Send extra headers
|
|
@@ -869,11 +853,7 @@ class AsyncJigResource(AsyncAPIResource):
|
|
|
869
853
|
extra_body=extra_body,
|
|
870
854
|
timeout=timeout,
|
|
871
855
|
query=await async_maybe_transform(
|
|
872
|
-
{
|
|
873
|
-
"follow": follow,
|
|
874
|
-
"replica_id": replica_id,
|
|
875
|
-
},
|
|
876
|
-
jig_retrieve_logs_params.JigRetrieveLogsParams,
|
|
856
|
+
{"replica_id": replica_id}, jig_retrieve_logs_params.JigRetrieveLogsParams
|
|
877
857
|
),
|
|
878
858
|
),
|
|
879
859
|
cast_to=DeploymentLogs,
|
together/resources/endpoints.py
CHANGED
|
@@ -7,7 +7,12 @@ from typing_extensions import Literal
|
|
|
7
7
|
|
|
8
8
|
import httpx
|
|
9
9
|
|
|
10
|
-
from ..types import
|
|
10
|
+
from ..types import (
|
|
11
|
+
endpoint_list_params,
|
|
12
|
+
endpoint_create_params,
|
|
13
|
+
endpoint_update_params,
|
|
14
|
+
endpoint_list_hardware_params,
|
|
15
|
+
)
|
|
11
16
|
from .._types import Body, Omit, Query, Headers, NoneType, NotGiven, omit, not_given
|
|
12
17
|
from .._utils import maybe_transform, async_maybe_transform
|
|
13
18
|
from .._compat import cached_property
|
|
@@ -23,6 +28,7 @@ from ..types.autoscaling_param import AutoscalingParam
|
|
|
23
28
|
from ..types.dedicated_endpoint import DedicatedEndpoint
|
|
24
29
|
from ..types.endpoint_list_response import EndpointListResponse
|
|
25
30
|
from ..types.endpoint_list_avzones_response import EndpointListAvzonesResponse
|
|
31
|
+
from ..types.endpoint_list_hardware_response import EndpointListHardwareResponse
|
|
26
32
|
|
|
27
33
|
__all__ = ["EndpointsResource", "AsyncEndpointsResource"]
|
|
28
34
|
|
|
@@ -320,6 +326,47 @@ class EndpointsResource(SyncAPIResource):
|
|
|
320
326
|
cast_to=EndpointListAvzonesResponse,
|
|
321
327
|
)
|
|
322
328
|
|
|
329
|
+
def list_hardware(
|
|
330
|
+
self,
|
|
331
|
+
*,
|
|
332
|
+
model: str | Omit = omit,
|
|
333
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
334
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
335
|
+
extra_headers: Headers | None = None,
|
|
336
|
+
extra_query: Query | None = None,
|
|
337
|
+
extra_body: Body | None = None,
|
|
338
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
339
|
+
) -> EndpointListHardwareResponse:
|
|
340
|
+
"""Returns a list of available hardware configurations for deploying models.
|
|
341
|
+
|
|
342
|
+
When a
|
|
343
|
+
model parameter is provided, it returns only hardware configurations compatible
|
|
344
|
+
with that model, including their current availability status.
|
|
345
|
+
|
|
346
|
+
Args:
|
|
347
|
+
model: Filter hardware configurations by model compatibility. When provided, the
|
|
348
|
+
response includes availability status for each compatible configuration.
|
|
349
|
+
|
|
350
|
+
extra_headers: Send extra headers
|
|
351
|
+
|
|
352
|
+
extra_query: Add additional query parameters to the request
|
|
353
|
+
|
|
354
|
+
extra_body: Add additional JSON properties to the request
|
|
355
|
+
|
|
356
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
357
|
+
"""
|
|
358
|
+
return self._get(
|
|
359
|
+
"/hardware",
|
|
360
|
+
options=make_request_options(
|
|
361
|
+
extra_headers=extra_headers,
|
|
362
|
+
extra_query=extra_query,
|
|
363
|
+
extra_body=extra_body,
|
|
364
|
+
timeout=timeout,
|
|
365
|
+
query=maybe_transform({"model": model}, endpoint_list_hardware_params.EndpointListHardwareParams),
|
|
366
|
+
),
|
|
367
|
+
cast_to=EndpointListHardwareResponse,
|
|
368
|
+
)
|
|
369
|
+
|
|
323
370
|
|
|
324
371
|
class AsyncEndpointsResource(AsyncAPIResource):
|
|
325
372
|
@cached_property
|
|
@@ -614,6 +661,49 @@ class AsyncEndpointsResource(AsyncAPIResource):
|
|
|
614
661
|
cast_to=EndpointListAvzonesResponse,
|
|
615
662
|
)
|
|
616
663
|
|
|
664
|
+
async def list_hardware(
|
|
665
|
+
self,
|
|
666
|
+
*,
|
|
667
|
+
model: str | Omit = omit,
|
|
668
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
669
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
670
|
+
extra_headers: Headers | None = None,
|
|
671
|
+
extra_query: Query | None = None,
|
|
672
|
+
extra_body: Body | None = None,
|
|
673
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
674
|
+
) -> EndpointListHardwareResponse:
|
|
675
|
+
"""Returns a list of available hardware configurations for deploying models.
|
|
676
|
+
|
|
677
|
+
When a
|
|
678
|
+
model parameter is provided, it returns only hardware configurations compatible
|
|
679
|
+
with that model, including their current availability status.
|
|
680
|
+
|
|
681
|
+
Args:
|
|
682
|
+
model: Filter hardware configurations by model compatibility. When provided, the
|
|
683
|
+
response includes availability status for each compatible configuration.
|
|
684
|
+
|
|
685
|
+
extra_headers: Send extra headers
|
|
686
|
+
|
|
687
|
+
extra_query: Add additional query parameters to the request
|
|
688
|
+
|
|
689
|
+
extra_body: Add additional JSON properties to the request
|
|
690
|
+
|
|
691
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
692
|
+
"""
|
|
693
|
+
return await self._get(
|
|
694
|
+
"/hardware",
|
|
695
|
+
options=make_request_options(
|
|
696
|
+
extra_headers=extra_headers,
|
|
697
|
+
extra_query=extra_query,
|
|
698
|
+
extra_body=extra_body,
|
|
699
|
+
timeout=timeout,
|
|
700
|
+
query=await async_maybe_transform(
|
|
701
|
+
{"model": model}, endpoint_list_hardware_params.EndpointListHardwareParams
|
|
702
|
+
),
|
|
703
|
+
),
|
|
704
|
+
cast_to=EndpointListHardwareResponse,
|
|
705
|
+
)
|
|
706
|
+
|
|
617
707
|
|
|
618
708
|
class EndpointsResourceWithRawResponse:
|
|
619
709
|
def __init__(self, endpoints: EndpointsResource) -> None:
|
|
@@ -637,6 +727,9 @@ class EndpointsResourceWithRawResponse:
|
|
|
637
727
|
self.list_avzones = to_raw_response_wrapper(
|
|
638
728
|
endpoints.list_avzones,
|
|
639
729
|
)
|
|
730
|
+
self.list_hardware = to_raw_response_wrapper(
|
|
731
|
+
endpoints.list_hardware,
|
|
732
|
+
)
|
|
640
733
|
|
|
641
734
|
|
|
642
735
|
class AsyncEndpointsResourceWithRawResponse:
|
|
@@ -661,6 +754,9 @@ class AsyncEndpointsResourceWithRawResponse:
|
|
|
661
754
|
self.list_avzones = async_to_raw_response_wrapper(
|
|
662
755
|
endpoints.list_avzones,
|
|
663
756
|
)
|
|
757
|
+
self.list_hardware = async_to_raw_response_wrapper(
|
|
758
|
+
endpoints.list_hardware,
|
|
759
|
+
)
|
|
664
760
|
|
|
665
761
|
|
|
666
762
|
class EndpointsResourceWithStreamingResponse:
|
|
@@ -685,6 +781,9 @@ class EndpointsResourceWithStreamingResponse:
|
|
|
685
781
|
self.list_avzones = to_streamed_response_wrapper(
|
|
686
782
|
endpoints.list_avzones,
|
|
687
783
|
)
|
|
784
|
+
self.list_hardware = to_streamed_response_wrapper(
|
|
785
|
+
endpoints.list_hardware,
|
|
786
|
+
)
|
|
688
787
|
|
|
689
788
|
|
|
690
789
|
class AsyncEndpointsResourceWithStreamingResponse:
|
|
@@ -709,3 +808,6 @@ class AsyncEndpointsResourceWithStreamingResponse:
|
|
|
709
808
|
self.list_avzones = async_to_streamed_response_wrapper(
|
|
710
809
|
endpoints.list_avzones,
|
|
711
810
|
)
|
|
811
|
+
self.list_hardware = async_to_streamed_response_wrapper(
|
|
812
|
+
endpoints.list_hardware,
|
|
813
|
+
)
|
together/types/__init__.py
CHANGED
|
@@ -40,7 +40,6 @@ from .endpoint_list_params import EndpointListParams as EndpointListParams
|
|
|
40
40
|
from .eval_create_response import EvalCreateResponse as EvalCreateResponse
|
|
41
41
|
from .eval_status_response import EvalStatusResponse as EvalStatusResponse
|
|
42
42
|
from .file_delete_response import FileDeleteResponse as FileDeleteResponse
|
|
43
|
-
from .hardware_list_params import HardwareListParams as HardwareListParams
|
|
44
43
|
from .rerank_create_params import RerankCreateParams as RerankCreateParams
|
|
45
44
|
from .batch_create_response import BatchCreateResponse as BatchCreateResponse
|
|
46
45
|
from .image_generate_params import ImageGenerateParams as ImageGenerateParams
|
|
@@ -48,7 +47,6 @@ from .model_upload_response import ModelUploadResponse as ModelUploadResponse
|
|
|
48
47
|
from .endpoint_create_params import EndpointCreateParams as EndpointCreateParams
|
|
49
48
|
from .endpoint_list_response import EndpointListResponse as EndpointListResponse
|
|
50
49
|
from .endpoint_update_params import EndpointUpdateParams as EndpointUpdateParams
|
|
51
|
-
from .hardware_list_response import HardwareListResponse as HardwareListResponse
|
|
52
50
|
from .rerank_create_response import RerankCreateResponse as RerankCreateResponse
|
|
53
51
|
from .embedding_create_params import EmbeddingCreateParams as EmbeddingCreateParams
|
|
54
52
|
from .completion_create_params import CompletionCreateParams as CompletionCreateParams
|
|
@@ -58,8 +56,10 @@ from .fine_tuning_list_response import FineTuningListResponse as FineTuningListR
|
|
|
58
56
|
from .fine_tuning_content_params import FineTuningContentParams as FineTuningContentParams
|
|
59
57
|
from .fine_tuning_cancel_response import FineTuningCancelResponse as FineTuningCancelResponse
|
|
60
58
|
from .fine_tuning_delete_response import FineTuningDeleteResponse as FineTuningDeleteResponse
|
|
59
|
+
from .endpoint_list_hardware_params import EndpointListHardwareParams as EndpointListHardwareParams
|
|
61
60
|
from .endpoint_list_avzones_response import EndpointListAvzonesResponse as EndpointListAvzonesResponse
|
|
62
61
|
from .code_interpreter_execute_params import CodeInterpreterExecuteParams as CodeInterpreterExecuteParams
|
|
62
|
+
from .endpoint_list_hardware_response import EndpointListHardwareResponse as EndpointListHardwareResponse
|
|
63
63
|
from .fine_tuning_list_events_response import FineTuningListEventsResponse as FineTuningListEventsResponse
|
|
64
64
|
from .fine_tuning_estimate_price_params import FineTuningEstimatePriceParams as FineTuningEstimatePriceParams
|
|
65
65
|
from .fine_tuning_estimate_price_response import FineTuningEstimatePriceResponse as FineTuningEstimatePriceResponse
|
|
@@ -11,7 +11,7 @@ __all__ = ["JigDeployParams", "EnvironmentVariable", "Volume"]
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
class JigDeployParams(TypedDict, total=False):
|
|
14
|
-
gpu_type: Required[Literal["h100-80gb", "
|
|
14
|
+
gpu_type: Required[Literal["h100-80gb", "a100-80gb"]]
|
|
15
15
|
"""GPUType specifies the GPU hardware to use (e.g., "h100-80gb")."""
|
|
16
16
|
|
|
17
17
|
image: Required[str]
|
|
@@ -4,10 +4,10 @@ from __future__ import annotations
|
|
|
4
4
|
|
|
5
5
|
from typing_extensions import TypedDict
|
|
6
6
|
|
|
7
|
-
__all__ = ["
|
|
7
|
+
__all__ = ["EndpointListHardwareParams"]
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
class
|
|
10
|
+
class EndpointListHardwareParams(TypedDict, total=False):
|
|
11
11
|
model: str
|
|
12
12
|
"""Filter hardware configurations by model compatibility.
|
|
13
13
|
|
|
@@ -6,7 +6,7 @@ from typing_extensions import Literal
|
|
|
6
6
|
|
|
7
7
|
from .._models import BaseModel
|
|
8
8
|
|
|
9
|
-
__all__ = ["
|
|
9
|
+
__all__ = ["EndpointListHardwareResponse", "Data", "DataPricing", "DataSpecs", "DataAvailability"]
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
class DataPricing(BaseModel):
|
|
@@ -60,7 +60,7 @@ class Data(BaseModel):
|
|
|
60
60
|
"""Indicates the current availability status of a hardware configuration"""
|
|
61
61
|
|
|
62
62
|
|
|
63
|
-
class
|
|
63
|
+
class EndpointListHardwareResponse(BaseModel):
|
|
64
64
|
data: List[Data]
|
|
65
65
|
|
|
66
66
|
object: Literal["list"]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: together
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.0a19
|
|
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
|
|
@@ -32,11 +32,15 @@ Requires-Dist: pydantic<3,>=1.9.0
|
|
|
32
32
|
Requires-Dist: rich>=13.7.1
|
|
33
33
|
Requires-Dist: sniffio
|
|
34
34
|
Requires-Dist: tabulate>=0.9.0
|
|
35
|
+
Requires-Dist: tomli>=2.0.0; python_version < '3.11'
|
|
35
36
|
Requires-Dist: tqdm>=4.67.1
|
|
36
37
|
Requires-Dist: types-pyyaml>=6.0.12.20250915
|
|
37
38
|
Requires-Dist: types-tabulate>=0.9.0.20240106
|
|
38
39
|
Requires-Dist: types-tqdm>=4.67.0.20250516
|
|
39
40
|
Requires-Dist: typing-extensions<5,>=4.10
|
|
41
|
+
Provides-Extra: aiofiles
|
|
42
|
+
Requires-Dist: aiofiles>=25.0.0; extra == 'aiofiles'
|
|
43
|
+
Requires-Dist: types-aiofiles; extra == 'aiofiles'
|
|
40
44
|
Provides-Extra: aiohttp
|
|
41
45
|
Requires-Dist: aiohttp; extra == 'aiohttp'
|
|
42
46
|
Requires-Dist: httpx-aiohttp>=0.1.9; extra == 'aiohttp'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
together/__init__.py,sha256=ghwEH6EUrPERUwHVSXaCJVqS7QmLN7NsUxKJNXQrOYM,2842
|
|
2
2
|
together/_base_client.py,sha256=GHCcpXtvG771s86xgrq236CGuR-QKdN4sqT0VUaNXHY,73660
|
|
3
|
-
together/_client.py,sha256=
|
|
3
|
+
together/_client.py,sha256=r-Yqf90SYRiN6MDyUMSJJHrmuq8VIMZy-mSEbQozokM,36700
|
|
4
4
|
together/_compat.py,sha256=teO44AYozpv2wFRrUi7brcZfGPpFSERQZ4fcdX6zVvs,6627
|
|
5
5
|
together/_constants.py,sha256=i39tJ7BP8nnqvdHFJwMhN6LWR6-jg5LLYiFudwCD3Ic,463
|
|
6
6
|
together/_exceptions.py,sha256=cpi7uHZjLovYHSeH_aTV7vmDj3dLx7mNN6hEdOY1vjo,3224
|
|
@@ -11,7 +11,7 @@ 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=6XJrgQABAp4xUfdSwlKJ3gAG0eRQHG92TwqqxgLh_tI,7596
|
|
14
|
-
together/_version.py,sha256=
|
|
14
|
+
together/_version.py,sha256=xCfik645tRC6X-l1b8OVR8ZkIek-JuV8FrRxgwj2_hk,169
|
|
15
15
|
together/constants.py,sha256=U1SgiirDQMiT5XvyrGcnNxPKlFmWeKq3TGkWLtB705w,1305
|
|
16
16
|
together/error.py,sha256=Xn-OeVpHIP06zWuLlqCTdglks2UOZpjdXzi2P46NlqA,452
|
|
17
17
|
together/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -34,7 +34,7 @@ together/lib/_google_colab.py,sha256=_-fqTU1NY2XfKttGjCH_b47W8g9xVIuQgcjn44STbVw
|
|
|
34
34
|
together/lib/constants.py,sha256=w8-zVl8XZiJxqMdhbWekigHJ0JUMPoV9R3ejUHIcUJk,2237
|
|
35
35
|
together/lib/cli/__init__.py,sha256=zXBNfMDUsWMUVN7FgKNRzzZHpq8EjpdfR9carjCFtog,2005
|
|
36
36
|
together/lib/cli/api/_utils.py,sha256=r7Aifi6KdzqwlQrHLVrAeYp54EvU7HS07VNkE_DCmA8,5749
|
|
37
|
-
together/lib/cli/api/beta/__init__.py,sha256=
|
|
37
|
+
together/lib/cli/api/beta/__init__.py,sha256=m0RUU0FzZjM7uqp2tB_rRLYbPRuxDR-VbZocXET-UFo,241
|
|
38
38
|
together/lib/cli/api/beta/clusters/__init__.py,sha256=1i0jKTNS2dM9646Ph1By4fCSAU8ZzPbn6baRfYQnnXw,1256
|
|
39
39
|
together/lib/cli/api/beta/clusters/create.py,sha256=M7Fg2aAaba_vRUNOpF9gnMnWDM8JO1_nyOsUtyiFt0o,6671
|
|
40
40
|
together/lib/cli/api/beta/clusters/delete.py,sha256=BpLgzNZbU8nl2DK4W_OvVcr1IaVb5_5K-PfFtxx5OUs,1034
|
|
@@ -48,11 +48,16 @@ together/lib/cli/api/beta/clusters/storage/create.py,sha256=03JaXRsDxcLbCDxX4-8i
|
|
|
48
48
|
together/lib/cli/api/beta/clusters/storage/delete.py,sha256=KSuCPG-KOZUZX1BlApksiELvicZD2hdl-uUumxjz4JA,1082
|
|
49
49
|
together/lib/cli/api/beta/clusters/storage/list.py,sha256=Pn12uJ7HhZ2MfRBeVMc8mdaB938JXqvKuKxHTzL3zlc,1076
|
|
50
50
|
together/lib/cli/api/beta/clusters/storage/retrieve.py,sha256=PnyZxZ_DKN-UNVITpOBP94y56hatbh1WOwqWYAV7eu8,772
|
|
51
|
+
together/lib/cli/api/beta/jig/__init__.py,sha256=5PzVN4vbDUEPeRzzMcIGintcoojxhtMzWIIgRQ7RXbc,1136
|
|
52
|
+
together/lib/cli/api/beta/jig/_config.py,sha256=M-aEU18RPLhx2DucQJsf4eYQiYF9n9RO9L_MTeT_7eY,5715
|
|
53
|
+
together/lib/cli/api/beta/jig/jig.py,sha256=PbfdPxEGEtmq5LvEAkdguuSaxkSXWGQlwYqBn6aL7Jo,24059
|
|
54
|
+
together/lib/cli/api/beta/jig/secrets.py,sha256=XEhRmZji4QUdrLdC7Ntk7H6ZfYvLgtVK-51eGhw7TKs,4457
|
|
55
|
+
together/lib/cli/api/beta/jig/volumes.py,sha256=1nPqzzXegtmnqsjXE7htP7ZGtPUK373cSaGYcwfQIM4,18330
|
|
51
56
|
together/lib/cli/api/endpoints/__init__.py,sha256=wZJvqaNxQhOZ6NLctrRjR2tbf6rL14ZGHQ_w-fmmCcI,1759
|
|
52
57
|
together/lib/cli/api/endpoints/availability_zones.py,sha256=DF1gxtmvhyQyIIOYw7QS00k2tDMJ1E5qPVoLu2gLBI8,766
|
|
53
58
|
together/lib/cli/api/endpoints/create.py,sha256=JBkYJkrsb1wI81dNqpTvl5o2JVT-zIh7v_UPOK_tsZ0,5084
|
|
54
59
|
together/lib/cli/api/endpoints/delete.py,sha256=rvLcI_m5N8Mx2elNxJB4aPDuMuGmFcKaJcQO1BKauCA,447
|
|
55
|
-
together/lib/cli/api/endpoints/hardware.py,sha256=
|
|
60
|
+
together/lib/cli/api/endpoints/hardware.py,sha256=dXaEWAWIyuFwQYH22mhUdWPvP7z-FheoQ0aeUrXLshI,2846
|
|
56
61
|
together/lib/cli/api/endpoints/list.py,sha256=EUr3p2VXNPiwED_LIzAPTmvjlpuPbAzCEGfzmCEl0mM,1734
|
|
57
62
|
together/lib/cli/api/endpoints/retrieve.py,sha256=KOBQ8BHV6D36Uujm-YCZ8gli56dyyVneivh5hHpqmMY,753
|
|
58
63
|
together/lib/cli/api/endpoints/start.py,sha256=H4WdoSUf1xNCW1YLTj0_rIAX7PJbJeHHXeKmpLNGWuo,821
|
|
@@ -81,7 +86,7 @@ together/lib/cli/api/fine_tuning/list_events.py,sha256=GUVuFFpJNL_BkxYVgtLSzuhBP
|
|
|
81
86
|
together/lib/cli/api/fine_tuning/retrieve.py,sha256=IskJVcfWwxaB-0jOHZ2nrew4mozNixza9R-95psBzrY,870
|
|
82
87
|
together/lib/cli/api/models/__init__.py,sha256=eITfO7XSwhdRQMUYlmVKge_lpOCmKnEGL3PhvjQlttM,234
|
|
83
88
|
together/lib/cli/api/models/list.py,sha256=W5DT-rlLvpO-X1INbES8qQTJ9PrcyIrZbQ17cG0AY8E,1796
|
|
84
|
-
together/lib/cli/api/models/upload.py,sha256=
|
|
89
|
+
together/lib/cli/api/models/upload.py,sha256=L9NQsnJfgNB0UaLlnSijhzx-bJe5eIgR0ScHMwKvoIQ,2912
|
|
85
90
|
together/lib/resources/__init__.py,sha256=ystIb0pBHQLuwUBtHJwhRgtjK3_TV6K0KuM8NGuuNoU,172
|
|
86
91
|
together/lib/resources/files.py,sha256=Z_D23IvjYYWBpYrfYolCNfUslJBcE4PnU0WtuLsN67M,37277
|
|
87
92
|
together/lib/resources/fine_tuning.py,sha256=A-hOJqcGSPzw24wwX6K27OqV3B-u43dfdrK4nj4ItTg,13088
|
|
@@ -93,15 +98,14 @@ together/lib/utils/_log.py,sha256=mo5tDhyFTNqEj8MOcpy3bLmLBcC0OQ67orTw_nxFdcU,19
|
|
|
93
98
|
together/lib/utils/files.py,sha256=CVTFwI7yMzpaQ-GsGr1tD4O2kXA-i369Pi0eMnlWMmI,31854
|
|
94
99
|
together/lib/utils/serializer.py,sha256=wJwySGxAL0e1giZzFpl4hHH3s9lkoNN_yzu-P_jdRIo,287
|
|
95
100
|
together/lib/utils/tools.py,sha256=rrpz3EXEVViou5GDPjVoCSt2zDPJYDzWYqTsVO1-OgI,2183
|
|
96
|
-
together/resources/__init__.py,sha256=
|
|
101
|
+
together/resources/__init__.py,sha256=69nfJ1iuqr2t-QN_GasnUlFgiAoWykTMVSPgNRiAbtk,7101
|
|
97
102
|
together/resources/batches.py,sha256=FTdtVrCGstua94Imd5kqPhvzTBA8MdcFXuNb9gMha8Q,15386
|
|
98
103
|
together/resources/completions.py,sha256=DHTQs7PLxjwWacEtRSmB2AKat3DaWotm8vz2Z7F_WDE,41505
|
|
99
104
|
together/resources/embeddings.py,sha256=7EU6DZQd0Nm0Sh7x7v37QQOLNuLqNmcjdJAyOTckeRo,7447
|
|
100
|
-
together/resources/endpoints.py,sha256
|
|
105
|
+
together/resources/endpoints.py,sha256=4_L8ofc6SjlZjuEs23l26Q4wG-wVahfW5eHPBROH1a0,31995
|
|
101
106
|
together/resources/evals.py,sha256=FPjvkbsBY5rrzLyQ-X1G9fWt2QmivI9ol5GExGtqYVA,16216
|
|
102
107
|
together/resources/files.py,sha256=0paHeVqNt3NQCXoztCgFS8PEIg_-mMVto-ulHTr7GzE,16854
|
|
103
108
|
together/resources/fine_tuning.py,sha256=BiCxQpdTjW5ArBufmWHNQoYY4z7Ulge8dI9GDCa5Dow,54795
|
|
104
|
-
together/resources/hardware.py,sha256=xgfCmMrrwF5o1igax0JGec8RY7kkS0s4kKm62RdC3ME,6850
|
|
105
109
|
together/resources/images.py,sha256=mVPQYpDHKBjLVO_Sv0uT62zYXdtWKN2PW3fCvfQLQCs,12612
|
|
106
110
|
together/resources/rerank.py,sha256=Xoaco2OvKdII7AhPaJDqUqoXmJvXbTWmY4_g_aqq8dQ,8334
|
|
107
111
|
together/resources/videos.py,sha256=AdcC08JrUtbcEJV-G0viH4CF1qU9oNjdjQ7U38QCEkU,14883
|
|
@@ -117,7 +121,7 @@ together/resources/beta/clusters/__init__.py,sha256=lW7cWkNzotbOcP4fSnFxvKlVrq1f
|
|
|
117
121
|
together/resources/beta/clusters/clusters.py,sha256=XT1AwLZTErzeiIdoZmR3U6CCMf5lkRWdj5P7cne8b1A,25041
|
|
118
122
|
together/resources/beta/clusters/storage.py,sha256=sdla1KchRCoya_yZfF2pfhLWNwrdXEoKWuw8UBS7UlY,19237
|
|
119
123
|
together/resources/beta/jig/__init__.py,sha256=ZntvTFCV75uYT6wzLMpXAa4XOYa1-5ImDoUI0B9a1_s,1876
|
|
120
|
-
together/resources/beta/jig/jig.py,sha256=
|
|
124
|
+
together/resources/beta/jig/jig.py,sha256=809I-QInrBOBKr8evbnCoGuKdOuqDLn1i1rAFX-3jCU,40212
|
|
121
125
|
together/resources/beta/jig/queue.py,sha256=B_L62y8i-sFcdZLxnPCxQkKILCPoSUr6o1SqgRdQAgA,17133
|
|
122
126
|
together/resources/beta/jig/secrets.py,sha256=_Un3KC4iRJ8ZiOZfQeT0q23CBtYbPBxguVdKD3gMLjM,20739
|
|
123
127
|
together/resources/beta/jig/volumes.py,sha256=ORQmOMGOCMpOHcKeQmYedAK1VoILFEohSmWAcxTB3iI,19182
|
|
@@ -130,7 +134,7 @@ together/resources/code_interpreter/sessions.py,sha256=Sl8X6-r1gds2VHhzpjPhfwYNT
|
|
|
130
134
|
together/resources/models/__init__.py,sha256=PgCtBXoungcmr-18vtpzZfu9P5VRiu8tshRtTCYUKl8,1015
|
|
131
135
|
together/resources/models/models.py,sha256=_ohtkX1i7bdzrMIeyxvSRG8JoHHKhjZ4EqaCvY15Tq4,12880
|
|
132
136
|
together/resources/models/uploads.py,sha256=gKq7pTDJMbAXAxWrVTUaUib39GqSvHgSCrUHEgS009Y,5884
|
|
133
|
-
together/types/__init__.py,sha256=
|
|
137
|
+
together/types/__init__.py,sha256=cQN02J9EKsC8-Qa5QPGRSyXLuNdLSKHFZDh6zfOslEw,5116
|
|
134
138
|
together/types/audio_speech_stream_chunk.py,sha256=npxlsMce0q4_VoJaZzfSh982TYTM0-j-zmhyI-9hP5o,346
|
|
135
139
|
together/types/autoscaling.py,sha256=nlOvbwrsgJQsz2ALlunp9o4sRdAmLe1tinXKSBNa2Yg,447
|
|
136
140
|
together/types/autoscaling_param.py,sha256=GNyqO4jV5zQie2BmOjfwpESxJ9IyVcz6p9wAxGIf6F0,544
|
|
@@ -148,6 +152,8 @@ together/types/embedding.py,sha256=ThcALXoTfDPptcFikqfUjDkBTHk3diJtYJ4hXYQOVHk,4
|
|
|
148
152
|
together/types/embedding_create_params.py,sha256=6FEUFFRj3EQ7_3T8qjjCpfpA1YWzcpcO259db5koNCo,913
|
|
149
153
|
together/types/endpoint_create_params.py,sha256=-9rL6FvjMBJGquBG4kTpJ7j0Ot7nkE3srr44-W_f8uc,1316
|
|
150
154
|
together/types/endpoint_list_avzones_response.py,sha256=LbzRkG7snD7Swy-t0E0MLXrlU-utn_N9qPwjPkr8jT4,303
|
|
155
|
+
together/types/endpoint_list_hardware_params.py,sha256=F45KYk-0peZeEFAMtKjGU8UHD-3KrcF0D74EYB4nOHI,451
|
|
156
|
+
together/types/endpoint_list_hardware_response.py,sha256=bK6Goi8v9xHkDmYSgkprnrggBrPAt6IoVsv935n3630,1748
|
|
151
157
|
together/types/endpoint_list_params.py,sha256=83Mg5beLYX_ipn1X_izk7hDIO8q8YNEL-tjsv5AcNXo,506
|
|
152
158
|
together/types/endpoint_list_response.py,sha256=LPyv8np_HctSW0QKstC8k7vF0RAejb6X9N2JowZtaEY,1010
|
|
153
159
|
together/types/endpoint_update_params.py,sha256=ONGRuPZQe_C40N5tfnu-HyPBNFvPRWeA3A9lEtrligc,780
|
|
@@ -178,8 +184,6 @@ together/types/finetune.py,sha256=fTMToJXPfBAD7L19WpkaimGtytRcIL80Cz2Fmhnbsps,11
|
|
|
178
184
|
together/types/finetune_event.py,sha256=0apAXe6Anx2_ffse2pOBJDxngCeuSvuDMYczZ0DtzZg,787
|
|
179
185
|
together/types/finetune_event_type.py,sha256=Bm4lkBhsLI_kaD5yabsvW6BpnjXzZO_lwDtiEeMNXnw,824
|
|
180
186
|
together/types/finetune_response.py,sha256=yRia3VGyLbqUnxpHz4idMKZXglXlVQHrt9tJL_-YwpM,5018
|
|
181
|
-
together/types/hardware_list_params.py,sha256=BbfiigtdQE0QNGFGr6o-Twg912x_riH5mbUNpZWYWO4,435
|
|
182
|
-
together/types/hardware_list_response.py,sha256=KfGhnEy7qEW2Bzt4Q8b-JSvxG-IKIIFfcpWEQHS9YdM,1732
|
|
183
187
|
together/types/image_data_b64.py,sha256=pLY7JDBb1HF1T29ACbae_xn6JQfttpqQVeG_jJeenZU,284
|
|
184
188
|
together/types/image_data_url.py,sha256=6A_EYNfcR6Z6sZkyC4MThxeZnK2cvTuQn6-A1dXM85w,274
|
|
185
189
|
together/types/image_file.py,sha256=sADh0UcrGlemkreIvHBEBizstAvt64CVOu7KtOALcHk,569
|
|
@@ -216,9 +220,9 @@ together/types/beta/cluster_list_response.py,sha256=Vctdf-x12g1Y4vJHJ06GFCBXKaVd
|
|
|
216
220
|
together/types/beta/cluster_update_params.py,sha256=C3OIOG1IyjV4_UeH24rzVbYAmSJiBT0Hs5bb3lXZCcU,328
|
|
217
221
|
together/types/beta/deployment.py,sha256=yJJZsyG--a52Gm1bys0cTt_qAoW1K0qif8FEhTRI70I,8017
|
|
218
222
|
together/types/beta/deployment_logs.py,sha256=2YMNvQQkc45Is_BpkBYANDxcp30KgKy30sGH1ax4-sk,258
|
|
219
|
-
together/types/beta/jig_deploy_params.py,sha256=
|
|
223
|
+
together/types/beta/jig_deploy_params.py,sha256=0a2xA01oH9_ZVf9Val0opQA2FLH7lr-83hHacHKmBfU,4180
|
|
220
224
|
together/types/beta/jig_list_response.py,sha256=hbAeOW_7D5b6m-2tPnXrYmmEk8Rup-Gzp8lvnklMoQA,457
|
|
221
|
-
together/types/beta/jig_retrieve_logs_params.py,sha256=
|
|
225
|
+
together/types/beta/jig_retrieve_logs_params.py,sha256=xv3BVoi-_ooWfNuyPpLMbz0io7h-O3nER18XqxFWLq8,311
|
|
222
226
|
together/types/beta/jig_update_params.py,sha256=_W-eszmO59hr55GCCHHr5ylSQtbGb5Qg_cmRHQqrL74,3896
|
|
223
227
|
together/types/beta/clusters/__init__.py,sha256=lQZ_CtOtxPVEFjzZVcA23QL03OAHy1nhkoHMEaRof58,503
|
|
224
228
|
together/types/beta/clusters/cluster_storage.py,sha256=LyQuFNZfypsXITxnJaPmo-YlgnTJ1Nj8rSAWj4HVy3g,344
|
|
@@ -256,8 +260,8 @@ together/types/code_interpreter/__init__.py,sha256=dAXfb3ryLMtcBalCfxxNu2wJVswVP
|
|
|
256
260
|
together/types/code_interpreter/session_list_response.py,sha256=TRxLGFTmIY-KLpStKjJtsrm4EI6BBvakpx43B6pkhnw,662
|
|
257
261
|
together/types/models/__init__.py,sha256=bGEqU6ZEkv5aefMzanWiM68jrEhDIWxKtGOAStXhzk8,204
|
|
258
262
|
together/types/models/upload_status_response.py,sha256=eLZfm8JVysDUnP8wsa2uea8siuGC4uBrF3JVipniQG4,883
|
|
259
|
-
together-2.0.
|
|
260
|
-
together-2.0.
|
|
261
|
-
together-2.0.
|
|
262
|
-
together-2.0.
|
|
263
|
-
together-2.0.
|
|
263
|
+
together-2.0.0a19.dist-info/METADATA,sha256=IZO2GqS6C3CWJMYw7vc4vAV7Ppuo05bJLawPoIW5PS4,21351
|
|
264
|
+
together-2.0.0a19.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
265
|
+
together-2.0.0a19.dist-info/entry_points.txt,sha256=urdkNVg6rlks26fHnWO7smiBtaZ6Vr75hlsoHSJ7TKc,51
|
|
266
|
+
together-2.0.0a19.dist-info/licenses/LICENSE,sha256=oSs-kmJHhMue4vIIPIxQMvXou9PbxgNdIX-r_AwfO7c,11338
|
|
267
|
+
together-2.0.0a19.dist-info/RECORD,,
|