diff --git a/prepline_general/api/models/form_params.py b/prepline_general/api/models/form_params.py index 2809c0a84..8b96bfda2 100644 --- a/prepline_general/api/models/form_params.py +++ b/prepline_general/api/models/form_params.py @@ -54,7 +54,7 @@ def as_form( Form( title="OCR Languages", description="The languages present in the document, for use in partitioning and/or OCR", - examples=["[eng]"], + examples=['["eng"]'], ), BeforeValidator(SmartValueParser[List[str]]().value_or_first_element), ] = [], # noqa @@ -63,7 +63,7 @@ def as_form( Form( title="OCR Languages", description="The languages present in the document, for use in partitioning and/or OCR", - examples=["[eng]"], + examples=['["eng"]'], ), BeforeValidator(SmartValueParser[List[str]]().value_or_first_element), ] = [], @@ -74,7 +74,7 @@ def as_form( description=( "The document types that you want to skip table extraction with. Default: []" ), - examples=["['pdf', 'jpg', 'png']"], + examples=['["pdf", "jpg", "png"]'], ), BeforeValidator(SmartValueParser[List[str]]().value_or_first_element), ] = [], # noqa