together 1.3.14__tar.gz → 1.4.0__tar.gz

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 (61) hide show
  1. {together-1.3.14 → together-1.4.0}/PKG-INFO +3 -4
  2. {together-1.3.14 → together-1.4.0}/pyproject.toml +3 -3
  3. {together-1.3.14 → together-1.4.0}/LICENSE +0 -0
  4. {together-1.3.14 → together-1.4.0}/README.md +0 -0
  5. {together-1.3.14 → together-1.4.0}/src/together/__init__.py +0 -0
  6. {together-1.3.14 → together-1.4.0}/src/together/abstract/__init__.py +0 -0
  7. {together-1.3.14 → together-1.4.0}/src/together/abstract/api_requestor.py +0 -0
  8. {together-1.3.14 → together-1.4.0}/src/together/cli/__init__.py +0 -0
  9. {together-1.3.14 → together-1.4.0}/src/together/cli/api/__init__.py +0 -0
  10. {together-1.3.14 → together-1.4.0}/src/together/cli/api/chat.py +0 -0
  11. {together-1.3.14 → together-1.4.0}/src/together/cli/api/completions.py +0 -0
  12. {together-1.3.14 → together-1.4.0}/src/together/cli/api/files.py +0 -0
  13. {together-1.3.14 → together-1.4.0}/src/together/cli/api/finetune.py +0 -0
  14. {together-1.3.14 → together-1.4.0}/src/together/cli/api/images.py +0 -0
  15. {together-1.3.14 → together-1.4.0}/src/together/cli/api/models.py +0 -0
  16. {together-1.3.14 → together-1.4.0}/src/together/cli/api/utils.py +0 -0
  17. {together-1.3.14 → together-1.4.0}/src/together/cli/cli.py +0 -0
  18. {together-1.3.14 → together-1.4.0}/src/together/client.py +0 -0
  19. {together-1.3.14 → together-1.4.0}/src/together/constants.py +0 -0
  20. {together-1.3.14 → together-1.4.0}/src/together/error.py +0 -0
  21. {together-1.3.14 → together-1.4.0}/src/together/filemanager.py +0 -0
  22. {together-1.3.14 → together-1.4.0}/src/together/legacy/__init__.py +0 -0
  23. {together-1.3.14 → together-1.4.0}/src/together/legacy/base.py +0 -0
  24. {together-1.3.14 → together-1.4.0}/src/together/legacy/complete.py +0 -0
  25. {together-1.3.14 → together-1.4.0}/src/together/legacy/embeddings.py +0 -0
  26. {together-1.3.14 → together-1.4.0}/src/together/legacy/files.py +0 -0
  27. {together-1.3.14 → together-1.4.0}/src/together/legacy/finetune.py +0 -0
  28. {together-1.3.14 → together-1.4.0}/src/together/legacy/images.py +0 -0
  29. {together-1.3.14 → together-1.4.0}/src/together/legacy/models.py +0 -0
  30. {together-1.3.14 → together-1.4.0}/src/together/resources/__init__.py +0 -0
  31. {together-1.3.14 → together-1.4.0}/src/together/resources/audio/__init__.py +0 -0
  32. {together-1.3.14 → together-1.4.0}/src/together/resources/audio/speech.py +0 -0
  33. {together-1.3.14 → together-1.4.0}/src/together/resources/chat/__init__.py +0 -0
  34. {together-1.3.14 → together-1.4.0}/src/together/resources/chat/completions.py +0 -0
  35. {together-1.3.14 → together-1.4.0}/src/together/resources/completions.py +0 -0
  36. {together-1.3.14 → together-1.4.0}/src/together/resources/embeddings.py +0 -0
  37. {together-1.3.14 → together-1.4.0}/src/together/resources/files.py +0 -0
  38. {together-1.3.14 → together-1.4.0}/src/together/resources/finetune.py +0 -0
  39. {together-1.3.14 → together-1.4.0}/src/together/resources/images.py +0 -0
  40. {together-1.3.14 → together-1.4.0}/src/together/resources/models.py +0 -0
  41. {together-1.3.14 → together-1.4.0}/src/together/resources/rerank.py +0 -0
  42. {together-1.3.14 → together-1.4.0}/src/together/together_response.py +0 -0
  43. {together-1.3.14 → together-1.4.0}/src/together/types/__init__.py +0 -0
  44. {together-1.3.14 → together-1.4.0}/src/together/types/abstract.py +0 -0
  45. {together-1.3.14 → together-1.4.0}/src/together/types/audio_speech.py +0 -0
  46. {together-1.3.14 → together-1.4.0}/src/together/types/chat_completions.py +0 -0
  47. {together-1.3.14 → together-1.4.0}/src/together/types/common.py +0 -0
  48. {together-1.3.14 → together-1.4.0}/src/together/types/completions.py +0 -0
  49. {together-1.3.14 → together-1.4.0}/src/together/types/embeddings.py +0 -0
  50. {together-1.3.14 → together-1.4.0}/src/together/types/error.py +0 -0
  51. {together-1.3.14 → together-1.4.0}/src/together/types/files.py +0 -0
  52. {together-1.3.14 → together-1.4.0}/src/together/types/finetune.py +0 -0
  53. {together-1.3.14 → together-1.4.0}/src/together/types/images.py +0 -0
  54. {together-1.3.14 → together-1.4.0}/src/together/types/models.py +0 -0
  55. {together-1.3.14 → together-1.4.0}/src/together/types/rerank.py +0 -0
  56. {together-1.3.14 → together-1.4.0}/src/together/utils/__init__.py +0 -0
  57. {together-1.3.14 → together-1.4.0}/src/together/utils/_log.py +0 -0
  58. {together-1.3.14 → together-1.4.0}/src/together/utils/api_helpers.py +0 -0
  59. {together-1.3.14 → together-1.4.0}/src/together/utils/files.py +0 -0
  60. {together-1.3.14 → together-1.4.0}/src/together/utils/tools.py +0 -0
  61. {together-1.3.14 → together-1.4.0}/src/together/version.py +0 -0
@@ -1,15 +1,14 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: together
3
- Version: 1.3.14
3
+ Version: 1.4.0
4
4
  Summary: Python client for Together's Cloud Platform!
5
5
  License: Apache-2.0
6
6
  Author: Together AI
7
7
  Author-email: support@together.ai
8
- Requires-Python: >=3.8,<4.0
8
+ Requires-Python: >=3.9,<4.0
9
9
  Classifier: License :: OSI Approved :: Apache Software License
10
10
  Classifier: Operating System :: POSIX :: Linux
11
11
  Classifier: Programming Language :: Python :: 3
12
- Classifier: Programming Language :: Python :: 3.8
13
12
  Classifier: Programming Language :: Python :: 3.9
14
13
  Classifier: Programming Language :: Python :: 3.10
15
14
  Classifier: Programming Language :: Python :: 3.11
@@ -21,7 +20,7 @@ Requires-Dist: eval-type-backport (>=0.1.3,<0.3.0)
21
20
  Requires-Dist: filelock (>=3.13.1,<4.0.0)
22
21
  Requires-Dist: numpy (>=1.23.5) ; python_version < "3.12"
23
22
  Requires-Dist: numpy (>=1.26.0) ; python_version >= "3.12"
24
- Requires-Dist: pillow (>=10.3.0,<11.0.0)
23
+ Requires-Dist: pillow (>=11.1.0,<12.0.0)
25
24
  Requires-Dist: pyarrow (>=10.0.1)
26
25
  Requires-Dist: pydantic (>=2.6.3,<3.0.0)
27
26
  Requires-Dist: requests (>=2.31.0,<3.0.0)
@@ -12,7 +12,7 @@ build-backend = "poetry.masonry.api"
12
12
 
13
13
  [tool.poetry]
14
14
  name = "together"
15
- version = "1.3.14"
15
+ version = "1.4.0"
16
16
  authors = [
17
17
  "Together AI <support@together.ai>"
18
18
  ]
@@ -28,7 +28,7 @@ repository = "https://github.com/togethercomputer/together-python"
28
28
  homepage = "https://github.com/togethercomputer/together-python"
29
29
 
30
30
  [tool.poetry.dependencies]
31
- python = "^3.8"
31
+ python = "^3.9"
32
32
  typer = ">=0.9,<0.16"
33
33
  requests = "^2.31.0"
34
34
  rich = "^13.8.1"
@@ -39,12 +39,12 @@ aiohttp = "^3.9.3"
39
39
  filelock = "^3.13.1"
40
40
  eval-type-backport = ">=0.1.3,<0.3.0"
41
41
  click = "^8.1.7"
42
- pillow = "^10.3.0"
43
42
  pyarrow = ">=10.0.1"
44
43
  numpy = [
45
44
  { version = ">=1.23.5", python = "<3.12" },
46
45
  { version = ">=1.26.0", python = ">=3.12" },
47
46
  ]
47
+ pillow = "^11.1.0"
48
48
 
49
49
  [tool.poetry.group.quality]
50
50
  optional = true
File without changes
File without changes