together 1.5.24__py3-none-any.whl → 1.5.26__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/cli/api/evaluation.py +84 -18
- together/cli/api/finetune.py +27 -0
- together/cli/api/models.py +79 -1
- together/constants.py +14 -2
- together/filemanager.py +230 -5
- together/resources/batch.py +30 -0
- together/resources/evaluation.py +92 -14
- together/resources/files.py +12 -3
- together/resources/finetune.py +63 -0
- together/resources/models.py +118 -0
- together/types/__init__.py +5 -1
- together/types/batch.py +1 -0
- together/types/evaluation.py +7 -3
- together/types/files.py +1 -1
- together/types/finetune.py +5 -0
- together/types/models.py +50 -1
- together/utils/files.py +1 -1
- {together-1.5.24.dist-info → together-1.5.26.dist-info}/METADATA +4 -2
- {together-1.5.24.dist-info → together-1.5.26.dist-info}/RECORD +22 -22
- {together-1.5.24.dist-info → together-1.5.26.dist-info}/WHEEL +1 -1
- {together-1.5.24.dist-info → together-1.5.26.dist-info}/entry_points.txt +0 -0
- {together-1.5.24.dist-info → together-1.5.26.dist-info/licenses}/LICENSE +0 -0
together/utils/files.py
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: together
|
|
3
|
-
Version: 1.5.
|
|
3
|
+
Version: 1.5.26
|
|
4
4
|
Summary: Python client for Together's Cloud Platform!
|
|
5
5
|
License: Apache-2.0
|
|
6
|
+
License-File: LICENSE
|
|
6
7
|
Author: Together AI
|
|
7
8
|
Author-email: support@together.ai
|
|
8
9
|
Requires-Python: >=3.10,<4.0
|
|
@@ -13,6 +14,7 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
13
14
|
Classifier: Programming Language :: Python :: 3.11
|
|
14
15
|
Classifier: Programming Language :: Python :: 3.12
|
|
15
16
|
Classifier: Programming Language :: Python :: 3.13
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
16
18
|
Provides-Extra: pyarrow
|
|
17
19
|
Requires-Dist: aiohttp (>=3.9.3,<4.0.0)
|
|
18
20
|
Requires-Dist: click (>=8.1.7,<9.0.0)
|
|
@@ -6,17 +6,17 @@ together/cli/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
|
6
6
|
together/cli/api/chat.py,sha256=2PHRb-9T-lUEKhUJFtc7SxJv3shCVx40gq_8pzfsewM,9234
|
|
7
7
|
together/cli/api/completions.py,sha256=l-Zw5t7hojL3w8xd_mitS2NRB72i5Z0xwkzH0rT5XMc,4263
|
|
8
8
|
together/cli/api/endpoints.py,sha256=f6KafWZvRF6n_ThWdr3y9uhE6wPF37PcD45w_EtgXmY,13289
|
|
9
|
-
together/cli/api/evaluation.py,sha256=
|
|
9
|
+
together/cli/api/evaluation.py,sha256=KNM67n8tMI8xzOdv_EhwU0qJplhlAV9BNEDJM14RC7U,13514
|
|
10
10
|
together/cli/api/files.py,sha256=QLYEXRkY8J2Gg1SbTCtzGfoTMvosoeACNK83L_oLubs,3397
|
|
11
|
-
together/cli/api/finetune.py,sha256=
|
|
11
|
+
together/cli/api/finetune.py,sha256=zG8Peg7DuptMpT5coqqGbRdaxM5SxQgte9tIv7tMJbM,18437
|
|
12
12
|
together/cli/api/images.py,sha256=GADSeaNUHUVMtWovmccGuKc28IJ9E_v4vAEwYHJhu5o,2645
|
|
13
|
-
together/cli/api/models.py,sha256=
|
|
13
|
+
together/cli/api/models.py,sha256=BRWRiguuJ8OwAD8crajpZ7RyCHA35tyOZvi3iLWQ7k4,3679
|
|
14
14
|
together/cli/api/utils.py,sha256=IuqYWPnLI38_Bqd7lj8V_SnGdYc59pRmMbQmciS4FsM,1326
|
|
15
15
|
together/cli/cli.py,sha256=PVahUjOfAQIjo209FoPKljcCA_OIpOYQ9MAsCjfEMu0,2134
|
|
16
16
|
together/client.py,sha256=xJO2WMli6eGas7OQFkF1hmLSN2Wd2u7iPJXBKueNeIs,6152
|
|
17
|
-
together/constants.py,sha256=
|
|
17
|
+
together/constants.py,sha256=yloKFcO6sIt-Vpk2tDIanJrFiXQUg5Vm0vmU5Cl703U,1999
|
|
18
18
|
together/error.py,sha256=HU6247CyzCFjaxL9A0XYbXZ6fY_ebRg0FEYjI4Skogs,5515
|
|
19
|
-
together/filemanager.py,sha256=
|
|
19
|
+
together/filemanager.py,sha256=ebVjksV676Kzvd9iDgraWTjatD8ZLfLT44rjcXveRZo,18326
|
|
20
20
|
together/legacy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
21
21
|
together/legacy/base.py,sha256=ehrX1SCfRbK5OA83wL1q7-tfF-yuZOUxzjxYfFtdvvQ,727
|
|
22
22
|
together/legacy/complete.py,sha256=NRJX-vjnkg4HrgDo9LS3jFfhwfXpeGxcl24dcrLPK3A,2439
|
|
@@ -30,24 +30,24 @@ together/resources/audio/__init__.py,sha256=S6gV6aEPAHL9kskoA38Uq_Ju7uM1Xcfl0doO
|
|
|
30
30
|
together/resources/audio/speech.py,sha256=81ib_gIo-Rxoaipx2Pi9ZsKnOTjeFPwSlBrcUkyX5xk,5211
|
|
31
31
|
together/resources/audio/transcriptions.py,sha256=67TPiDzfEcsHMpRyZx8eGR5jtnmEcZNUjA6g3Ykq4Zg,10219
|
|
32
32
|
together/resources/audio/translations.py,sha256=_2VeYEthYzPIflDD_hlVmoXk-OCgLgnvva2vMPpaU_Q,10508
|
|
33
|
-
together/resources/batch.py,sha256=
|
|
33
|
+
together/resources/batch.py,sha256=dBXgh264AQPsO3pCff1vT1PAewnX9yroxa8UZQUJAqE,4584
|
|
34
34
|
together/resources/chat/__init__.py,sha256=RsTptdP8MeGjcdIjze896-J27cRvCbUoMft0X2BVlQ8,617
|
|
35
35
|
together/resources/chat/completions.py,sha256=cBsSFWi9qToQCn4V_3qJ0gwRqORjF6NFDXmHcHfIhOY,14442
|
|
36
36
|
together/resources/code_interpreter.py,sha256=vbN8Mh5MG6HQvqra7p61leIyfebgbgJTM_q2A_Fylhw,2948
|
|
37
37
|
together/resources/completions.py,sha256=5Wa-ZjPCxRcam6CDe7KgGYlTA7yJZMmd5TrRgGCL_ug,11726
|
|
38
38
|
together/resources/embeddings.py,sha256=PTvLb82yjG_-iQOyuhsilp77Fr7gZ0o6WD2KeRnKoxs,2675
|
|
39
39
|
together/resources/endpoints.py,sha256=NNjp-wyzOotzlscGGrANhOHxQBjHTN8f5kTQTH_CLvE,17177
|
|
40
|
-
together/resources/evaluation.py,sha256=
|
|
41
|
-
together/resources/files.py,sha256=
|
|
42
|
-
together/resources/finetune.py,sha256=
|
|
40
|
+
together/resources/evaluation.py,sha256=ZKzTSRKrZdZ1bWGbJYapsnBvXW3u6PP2USquxC2dMkQ,31053
|
|
41
|
+
together/resources/files.py,sha256=_uK5xzriXNOGNw3tQGuTbCaxBRo6Az6_cXOUtBNFzDk,5434
|
|
42
|
+
together/resources/finetune.py,sha256=VeMyPG-PA16d2UAzqNTQEAKBgMvVApj97lTAHEuR0kc,44890
|
|
43
43
|
together/resources/images.py,sha256=LQUjKPaFxWTqOAPnyF1Pp7Rz4NLOYhmoKwshpYiprEM,4923
|
|
44
|
-
together/resources/models.py,sha256=
|
|
44
|
+
together/resources/models.py,sha256=WpP-x25AXYpmu-VKu_X4Up-zHwpWBBvPRpbV4FsWQrU,8266
|
|
45
45
|
together/resources/rerank.py,sha256=3Ju_aRSyZ1s_3zCSNZnSnEJErUVmt2xa3M8z1nvejMA,3931
|
|
46
46
|
together/together_response.py,sha256=a3dgKMPDrlfKQwxYENfNt2T4l2vSZxRWMixhHSy-q3E,1308
|
|
47
|
-
together/types/__init__.py,sha256=
|
|
47
|
+
together/types/__init__.py,sha256=z_xiJ0yWgSWneiJCFQI7Rj85uzQhKf2ZhGhX_7PVsC4,4094
|
|
48
48
|
together/types/abstract.py,sha256=1lFQI_3WjsR_t1128AeKW0aTk6EiM6Gh1J3ZuyLLPao,642
|
|
49
49
|
together/types/audio_speech.py,sha256=7GNldCfddDNo1vVPqyT-u7fX_TR-du1OePSzoXdAK3s,4694
|
|
50
|
-
together/types/batch.py,sha256=
|
|
50
|
+
together/types/batch.py,sha256=KiI5i1En7cyIUxHhVIGoQk6Wlw19c0PXSqDWwc2KZ2c,1140
|
|
51
51
|
together/types/chat_completions.py,sha256=NxJ7tFlWynxoLsRtQHzM7Ka3QxKVjRs6EvtOTYZ79bM,5340
|
|
52
52
|
together/types/code_interpreter.py,sha256=cjF8TKgRkJllHS4i24dWQZBGTRsG557eHSewOiip0Kk,1770
|
|
53
53
|
together/types/common.py,sha256=kxZ-N9xtBsGYZBmbIWnZ0rfT3Pn8PFB7sAbp3iv96pw,1525
|
|
@@ -55,20 +55,20 @@ together/types/completions.py,sha256=o3FR5ixsTUj-a3pmOUzbSQg-hESVhpqrC9UD__VCqr4
|
|
|
55
55
|
together/types/embeddings.py,sha256=J7grkYYn7xhqeKaBO2T-8XQRtHhkzYzymovtGdIUK5A,751
|
|
56
56
|
together/types/endpoints.py,sha256=EzNhHOoQ_D9fUdNQtxQPeSWiFzdFLqpNodN0YLmv_h0,4393
|
|
57
57
|
together/types/error.py,sha256=OVlCs3cx_2WhZK4JzHT8SQyRIIqKOP1AZQ4y1PydjAE,370
|
|
58
|
-
together/types/evaluation.py,sha256=
|
|
59
|
-
together/types/files.py,sha256=
|
|
60
|
-
together/types/finetune.py,sha256=
|
|
58
|
+
together/types/evaluation.py,sha256=Nv05ub4Pf00t8FrZAt8LRviOMF9N2_Xzy_I3zTgbSaM,2297
|
|
59
|
+
together/types/files.py,sha256=XCimmKDaSEEfavOtp0UH-ZrRxrmHoCTYLlmmhshbr7A,1994
|
|
60
|
+
together/types/finetune.py,sha256=EQAJVXqK1Ne2V2dCfUiJgOwK9_x_7TwQRrjWavap698,11396
|
|
61
61
|
together/types/images.py,sha256=xnC-FZGdZU30WSFTybfGneWxb-kj0ZGufJsgHtB8j0k,980
|
|
62
|
-
together/types/models.py,sha256=
|
|
62
|
+
together/types/models.py,sha256=rFQlwaIiTgLWL8fY7NDQ5WgD00IkURAUaSld3dv6D_A,2858
|
|
63
63
|
together/types/rerank.py,sha256=qZfuXOn7MZ6ly8hpJ_MZ7OU_Bi1-cgYNSB20Wja8Qkk,1061
|
|
64
64
|
together/utils/__init__.py,sha256=5fqvj4KT2rHxKSQot2TSyV_HcvkvkGiqAiaYuJwqtm0,786
|
|
65
65
|
together/utils/_log.py,sha256=5IYNI-jYzxyIS-pUvhb0vE_Muo3MA7GgBhsu66TKP2w,1951
|
|
66
66
|
together/utils/api_helpers.py,sha256=2K0O6qeEQ2zVFvi5NBN5m2kjZJaS3-JfKFecQ7SmGaw,3746
|
|
67
|
-
together/utils/files.py,sha256=
|
|
67
|
+
together/utils/files.py,sha256=Zqw1MA0CbnpkiGWSMk0DtRUFzf7-kWDE1OgzGWinbV4,20671
|
|
68
68
|
together/utils/tools.py,sha256=H2MTJhEqtBllaDvOyZehIO_IVNK3P17rSDeILtJIVag,2964
|
|
69
69
|
together/version.py,sha256=p03ivHyE0SyWU4jAnRTBi_sOwywVWoZPU4g2gzRgG-Y,126
|
|
70
|
-
together-1.5.
|
|
71
|
-
together-1.5.
|
|
72
|
-
together-1.5.
|
|
73
|
-
together-1.5.
|
|
74
|
-
together-1.5.
|
|
70
|
+
together-1.5.26.dist-info/METADATA,sha256=VTc4Tu4A-f1gxsLku_GyjrKZ-_dSkaX9WimjeNIR1W4,16514
|
|
71
|
+
together-1.5.26.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
72
|
+
together-1.5.26.dist-info/entry_points.txt,sha256=G-b5NKW6lUUf1V1fH8IPTBb7jXnK7lhbX9H1zTEJXPs,50
|
|
73
|
+
together-1.5.26.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
74
|
+
together-1.5.26.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|