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.
Files changed (57) hide show
  1. together/_base_client.py +5 -2
  2. together/_client.py +1 -39
  3. together/_compat.py +3 -3
  4. together/_utils/_json.py +35 -0
  5. together/_version.py +1 -1
  6. together/lib/cli/api/endpoints/create.py +7 -3
  7. together/lib/cli/api/endpoints/hardware.py +37 -6
  8. together/lib/cli/api/models/upload.py +5 -1
  9. together/resources/__init__.py +0 -14
  10. together/resources/beta/__init__.py +14 -0
  11. together/resources/beta/beta.py +32 -0
  12. together/resources/beta/clusters/clusters.py +12 -12
  13. together/resources/beta/clusters/storage.py +10 -10
  14. together/resources/beta/jig/__init__.py +61 -0
  15. together/resources/beta/jig/jig.py +1024 -0
  16. together/resources/beta/jig/queue.py +482 -0
  17. together/resources/beta/jig/secrets.py +548 -0
  18. together/resources/beta/jig/volumes.py +514 -0
  19. together/resources/chat/completions.py +10 -0
  20. together/resources/models/__init__.py +33 -0
  21. together/resources/{models.py → models/models.py} +41 -9
  22. together/resources/models/uploads.py +163 -0
  23. together/types/__init__.py +0 -2
  24. together/types/beta/__init__.py +6 -0
  25. together/types/beta/deployment.py +261 -0
  26. together/types/beta/deployment_logs.py +11 -0
  27. together/types/beta/jig/__init__.py +20 -0
  28. together/types/beta/jig/queue_cancel_params.py +13 -0
  29. together/types/beta/jig/queue_cancel_response.py +11 -0
  30. together/types/beta/jig/queue_metrics_params.py +12 -0
  31. together/types/beta/jig/queue_metrics_response.py +8 -0
  32. together/types/beta/jig/queue_retrieve_params.py +15 -0
  33. together/types/beta/jig/queue_retrieve_response.py +35 -0
  34. together/types/beta/jig/queue_submit_params.py +19 -0
  35. together/types/beta/jig/queue_submit_response.py +25 -0
  36. together/types/beta/jig/secret.py +33 -0
  37. together/types/beta/jig/secret_create_params.py +34 -0
  38. together/types/beta/jig/secret_list_response.py +16 -0
  39. together/types/beta/jig/secret_update_params.py +34 -0
  40. together/types/beta/jig/volume.py +47 -0
  41. together/types/beta/jig/volume_create_params.py +34 -0
  42. together/types/beta/jig/volume_list_response.py +16 -0
  43. together/types/beta/jig/volume_update_params.py +34 -0
  44. together/types/beta/jig_deploy_params.py +150 -0
  45. together/types/beta/jig_list_response.py +16 -0
  46. together/types/beta/jig_retrieve_logs_params.py +15 -0
  47. together/types/beta/jig_update_params.py +141 -0
  48. together/types/chat/completion_create_params.py +11 -0
  49. together/types/models/__init__.py +5 -0
  50. together/types/{job_retrieve_response.py → models/upload_status_response.py} +3 -3
  51. {together-2.0.0a17.dist-info → together-2.0.0a18.dist-info}/METADATA +11 -14
  52. {together-2.0.0a17.dist-info → together-2.0.0a18.dist-info}/RECORD +55 -25
  53. together/resources/jobs.py +0 -214
  54. together/types/job_list_response.py +0 -47
  55. {together-2.0.0a17.dist-info → together-2.0.0a18.dist-info}/WHEEL +0 -0
  56. {together-2.0.0a17.dist-info → together-2.0.0a18.dist-info}/entry_points.txt +0 -0
  57. {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
+ ]