We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c106f7 commit 6b685e2Copy full SHA for 6b685e2
1 file changed
src/together/constants.py
@@ -20,13 +20,13 @@
20
21
# Multipart upload constants
22
MIN_PART_SIZE_MB = 5 # Minimum part size (S3 requirement)
23
-TARGET_PART_SIZE_MB = 100 # Target part size for optimal performance
24
-MAX_MULTIPART_PARTS = 250 # Maximum parts per upload (S3 limit)
+TARGET_PART_SIZE_MB = 250 # Target part size for large files
+MAX_MULTIPART_PARTS = 250 # Maximum parts per upload
25
MULTIPART_UPLOAD_TIMEOUT = 300 # Timeout in seconds for uploading each part
26
MULTIPART_THRESHOLD_GB = 5.0 # threshold for switching to multipart upload
27
28
# maximum number of GB sized files we support finetuning for
29
-MAX_FILE_SIZE_GB = 25.0
+MAX_FILE_SIZE_GB = 50.1
30
31
32
# Messages
0 commit comments