Skip to content

Commit cb5897d

Browse files
authored
Merge pull request #818 from Labelbox/1024-str-metadata
increase max string len to 1024
2 parents 8bd16d8 + 158b7f3 commit cb5897d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

labelbox/schema/data_row_metadata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class DataRowMetadataSchema(BaseModel):
3333
DataRowMetadataSchema.update_forward_refs()
3434

3535
Embedding: Type[List[float]] = conlist(float, min_items=128, max_items=128)
36-
String: Type[str] = constr(max_length=500)
36+
String: Type[str] = constr(max_length=1024)
3737

3838

3939
# Metadata base class

0 commit comments

Comments
 (0)