together 2.0.0a17__py3-none-any.whl → 2.0.0a18__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/_base_client.py +5 -2
- together/_client.py +1 -39
- together/_compat.py +3 -3
- together/_utils/_json.py +35 -0
- together/_version.py +1 -1
- together/lib/cli/api/endpoints/create.py +7 -3
- together/lib/cli/api/endpoints/hardware.py +37 -6
- together/lib/cli/api/models/upload.py +5 -1
- together/resources/__init__.py +0 -14
- together/resources/beta/__init__.py +14 -0
- together/resources/beta/beta.py +32 -0
- together/resources/beta/clusters/clusters.py +12 -12
- together/resources/beta/clusters/storage.py +10 -10
- together/resources/beta/jig/__init__.py +61 -0
- together/resources/beta/jig/jig.py +1024 -0
- together/resources/beta/jig/queue.py +482 -0
- together/resources/beta/jig/secrets.py +548 -0
- together/resources/beta/jig/volumes.py +514 -0
- together/resources/chat/completions.py +10 -0
- together/resources/models/__init__.py +33 -0
- together/resources/{models.py → models/models.py} +41 -9
- together/resources/models/uploads.py +163 -0
- together/types/__init__.py +0 -2
- together/types/beta/__init__.py +6 -0
- together/types/beta/deployment.py +261 -0
- together/types/beta/deployment_logs.py +11 -0
- together/types/beta/jig/__init__.py +20 -0
- together/types/beta/jig/queue_cancel_params.py +13 -0
- together/types/beta/jig/queue_cancel_response.py +11 -0
- together/types/beta/jig/queue_metrics_params.py +12 -0
- together/types/beta/jig/queue_metrics_response.py +8 -0
- together/types/beta/jig/queue_retrieve_params.py +15 -0
- together/types/beta/jig/queue_retrieve_response.py +35 -0
- together/types/beta/jig/queue_submit_params.py +19 -0
- together/types/beta/jig/queue_submit_response.py +25 -0
- together/types/beta/jig/secret.py +33 -0
- together/types/beta/jig/secret_create_params.py +34 -0
- together/types/beta/jig/secret_list_response.py +16 -0
- together/types/beta/jig/secret_update_params.py +34 -0
- together/types/beta/jig/volume.py +47 -0
- together/types/beta/jig/volume_create_params.py +34 -0
- together/types/beta/jig/volume_list_response.py +16 -0
- together/types/beta/jig/volume_update_params.py +34 -0
- together/types/beta/jig_deploy_params.py +150 -0
- together/types/beta/jig_list_response.py +16 -0
- together/types/beta/jig_retrieve_logs_params.py +15 -0
- together/types/beta/jig_update_params.py +141 -0
- together/types/chat/completion_create_params.py +11 -0
- together/types/models/__init__.py +5 -0
- together/types/{job_retrieve_response.py → models/upload_status_response.py} +3 -3
- {together-2.0.0a17.dist-info → together-2.0.0a18.dist-info}/METADATA +11 -14
- {together-2.0.0a17.dist-info → together-2.0.0a18.dist-info}/RECORD +55 -25
- together/resources/jobs.py +0 -214
- together/types/job_list_response.py +0 -47
- {together-2.0.0a17.dist-info → together-2.0.0a18.dist-info}/WHEEL +0 -0
- {together-2.0.0a17.dist-info → together-2.0.0a18.dist-info}/entry_points.txt +0 -0
- {together-2.0.0a17.dist-info → together-2.0.0a18.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from .jig import (
|
|
4
|
+
JigResource,
|
|
5
|
+
AsyncJigResource,
|
|
6
|
+
JigResourceWithRawResponse,
|
|
7
|
+
AsyncJigResourceWithRawResponse,
|
|
8
|
+
JigResourceWithStreamingResponse,
|
|
9
|
+
AsyncJigResourceWithStreamingResponse,
|
|
10
|
+
)
|
|
11
|
+
from .queue import (
|
|
12
|
+
QueueResource,
|
|
13
|
+
AsyncQueueResource,
|
|
14
|
+
QueueResourceWithRawResponse,
|
|
15
|
+
AsyncQueueResourceWithRawResponse,
|
|
16
|
+
QueueResourceWithStreamingResponse,
|
|
17
|
+
AsyncQueueResourceWithStreamingResponse,
|
|
18
|
+
)
|
|
19
|
+
from .secrets import (
|
|
20
|
+
SecretsResource,
|
|
21
|
+
AsyncSecretsResource,
|
|
22
|
+
SecretsResourceWithRawResponse,
|
|
23
|
+
AsyncSecretsResourceWithRawResponse,
|
|
24
|
+
SecretsResourceWithStreamingResponse,
|
|
25
|
+
AsyncSecretsResourceWithStreamingResponse,
|
|
26
|
+
)
|
|
27
|
+
from .volumes import (
|
|
28
|
+
VolumesResource,
|
|
29
|
+
AsyncVolumesResource,
|
|
30
|
+
VolumesResourceWithRawResponse,
|
|
31
|
+
AsyncVolumesResourceWithRawResponse,
|
|
32
|
+
VolumesResourceWithStreamingResponse,
|
|
33
|
+
AsyncVolumesResourceWithStreamingResponse,
|
|
34
|
+
)
|
|
35
|
+
|
|
36
|
+
__all__ = [
|
|
37
|
+
"QueueResource",
|
|
38
|
+
"AsyncQueueResource",
|
|
39
|
+
"QueueResourceWithRawResponse",
|
|
40
|
+
"AsyncQueueResourceWithRawResponse",
|
|
41
|
+
"QueueResourceWithStreamingResponse",
|
|
42
|
+
"AsyncQueueResourceWithStreamingResponse",
|
|
43
|
+
"VolumesResource",
|
|
44
|
+
"AsyncVolumesResource",
|
|
45
|
+
"VolumesResourceWithRawResponse",
|
|
46
|
+
"AsyncVolumesResourceWithRawResponse",
|
|
47
|
+
"VolumesResourceWithStreamingResponse",
|
|
48
|
+
"AsyncVolumesResourceWithStreamingResponse",
|
|
49
|
+
"SecretsResource",
|
|
50
|
+
"AsyncSecretsResource",
|
|
51
|
+
"SecretsResourceWithRawResponse",
|
|
52
|
+
"AsyncSecretsResourceWithRawResponse",
|
|
53
|
+
"SecretsResourceWithStreamingResponse",
|
|
54
|
+
"AsyncSecretsResourceWithStreamingResponse",
|
|
55
|
+
"JigResource",
|
|
56
|
+
"AsyncJigResource",
|
|
57
|
+
"JigResourceWithRawResponse",
|
|
58
|
+
"AsyncJigResourceWithRawResponse",
|
|
59
|
+
"JigResourceWithStreamingResponse",
|
|
60
|
+
"AsyncJigResourceWithStreamingResponse",
|
|
61
|
+
]
|