together 2.0.0a14__py3-none-any.whl → 2.0.0a16__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 (88) hide show
  1. together/_base_client.py +134 -11
  2. together/_client.py +7 -0
  3. together/_models.py +16 -1
  4. together/_types.py +9 -0
  5. together/_version.py +1 -1
  6. together/constants.py +34 -0
  7. together/error.py +15 -0
  8. together/lib/_google_colab.py +39 -0
  9. together/lib/cli/__init__.py +73 -0
  10. together/lib/cli/api/{utils.py → _utils.py} +4 -4
  11. together/lib/cli/api/beta/clusters/__init__.py +47 -0
  12. together/lib/cli/api/beta/{clusters.py → clusters/create.py} +5 -179
  13. together/lib/cli/api/beta/clusters/delete.py +35 -0
  14. together/lib/cli/api/beta/clusters/get_credentials.py +151 -0
  15. together/lib/cli/api/beta/clusters/list.py +24 -0
  16. together/lib/cli/api/beta/clusters/list_regions.py +37 -0
  17. together/lib/cli/api/beta/clusters/retrieve.py +31 -0
  18. together/lib/cli/api/beta/clusters/storage/__init__.py +19 -0
  19. together/lib/cli/api/beta/clusters/storage/create.py +49 -0
  20. together/lib/cli/api/beta/clusters/storage/delete.py +38 -0
  21. together/lib/cli/api/beta/clusters/storage/list.py +42 -0
  22. together/lib/cli/api/beta/clusters/storage/retrieve.py +34 -0
  23. together/lib/cli/api/beta/clusters/update.py +54 -0
  24. together/lib/cli/api/endpoints/__init__.py +56 -0
  25. together/lib/cli/api/endpoints/availability_zones.py +26 -0
  26. together/lib/cli/api/endpoints/create.py +159 -0
  27. together/lib/cli/api/endpoints/delete.py +15 -0
  28. together/lib/cli/api/endpoints/hardware.py +40 -0
  29. together/lib/cli/api/endpoints/list.py +66 -0
  30. together/lib/cli/api/endpoints/retrieve.py +23 -0
  31. together/lib/cli/api/endpoints/start.py +25 -0
  32. together/lib/cli/api/endpoints/stop.py +25 -0
  33. together/lib/cli/api/endpoints/update.py +77 -0
  34. together/lib/cli/api/evals/__init__.py +19 -0
  35. together/lib/cli/api/{evals.py → evals/create.py} +6 -129
  36. together/lib/cli/api/evals/list.py +58 -0
  37. together/lib/cli/api/evals/retrieve.py +21 -0
  38. together/lib/cli/api/evals/status.py +20 -0
  39. together/lib/cli/api/files/__init__.py +23 -0
  40. together/lib/cli/api/files/check.py +21 -0
  41. together/lib/cli/api/files/delete.py +20 -0
  42. together/lib/cli/api/files/list.py +34 -0
  43. together/lib/cli/api/files/retrieve.py +20 -0
  44. together/lib/cli/api/files/retrieve_content.py +25 -0
  45. together/lib/cli/api/files/upload.py +38 -0
  46. together/lib/cli/api/fine_tuning/__init__.py +27 -0
  47. together/lib/cli/api/fine_tuning/cancel.py +28 -0
  48. together/lib/cli/api/{fine_tuning.py → fine_tuning/create.py} +5 -257
  49. together/lib/cli/api/fine_tuning/delete.py +29 -0
  50. together/lib/cli/api/fine_tuning/download.py +94 -0
  51. together/lib/cli/api/fine_tuning/list.py +44 -0
  52. together/lib/cli/api/fine_tuning/list_checkpoints.py +42 -0
  53. together/lib/cli/api/fine_tuning/list_events.py +35 -0
  54. together/lib/cli/api/fine_tuning/retrieve.py +27 -0
  55. together/lib/cli/api/models/__init__.py +15 -0
  56. together/lib/cli/api/models/list.py +51 -0
  57. together/lib/cli/api/{models.py → models/upload.py} +4 -51
  58. together/lib/types/fine_tuning.py +3 -0
  59. together/resources/beta/clusters/clusters.py +36 -28
  60. together/resources/beta/clusters/storage.py +30 -21
  61. together/types/__init__.py +13 -1
  62. together/types/beta/__init__.py +0 -2
  63. together/types/beta/cluster_create_params.py +3 -3
  64. together/types/beta/clusters/__init__.py +0 -1
  65. together/types/beta/clusters/cluster_storage.py +4 -0
  66. together/types/chat_completions.py +7 -0
  67. together/types/endpoints.py +4 -0
  68. together/types/files.py +8 -0
  69. together/types/fine_tuning_cancel_response.py +3 -0
  70. together/types/fine_tuning_list_response.py +3 -0
  71. together/types/finetune.py +27 -0
  72. together/types/finetune_response.py +2 -0
  73. together/types/models.py +2 -0
  74. {together-2.0.0a14.dist-info → together-2.0.0a16.dist-info}/METADATA +45 -2
  75. {together-2.0.0a14.dist-info → together-2.0.0a16.dist-info}/RECORD +79 -36
  76. together-2.0.0a16.dist-info/entry_points.txt +2 -0
  77. together/lib/cli/api/__init__.py +0 -0
  78. together/lib/cli/api/beta/clusters_storage.py +0 -152
  79. together/lib/cli/api/endpoints.py +0 -467
  80. together/lib/cli/api/files.py +0 -133
  81. together/lib/cli/cli.py +0 -73
  82. together/types/beta/cluster_create_response.py +0 -9
  83. together/types/beta/cluster_update_response.py +0 -9
  84. together/types/beta/clusters/storage_create_response.py +0 -9
  85. together-2.0.0a14.dist-info/entry_points.txt +0 -2
  86. /together/lib/cli/api/beta/{beta.py → __init__.py} +0 -0
  87. {together-2.0.0a14.dist-info → together-2.0.0a16.dist-info}/WHEEL +0 -0
  88. {together-2.0.0a14.dist-info → together-2.0.0a16.dist-info}/licenses/LICENSE +0 -0
File without changes