@@ -835,17 +835,19 @@ class CreateCatalogRequest(google.protobuf.message.Message):
835835 """The catalog type. default is PERSISTENT"""
836836 @property
837837 def converting_pipelines (self ) -> google .protobuf .internal .containers .RepeatedScalarFieldContainer [builtins .str ]:
838- """Pipelines used for converting documents (i.e., files with pdf, doc[x] or
839- ppt[x] extension) to Markdown. The strings in the list identify the
840- pipelines and MUST have the format `{namespaceID}/{pipelineID}@{version}`.
841- The pipeline recipes MUST have the following variable and output fields:
838+ """Pipelines used for converting page-based documents (i.e., files with pdf,
839+ doc[x] or ppt[x] extension) to Markdown. The strings in the list identify
840+ the pipelines and MUST have the format
841+ `{namespaceID}/{pipelineID}@{version}`. The pipeline recipes MUST have the
842+ following variable and output fields:
842843 ```yaml variable
843844 variable:
844845 document_input:
845846 title: document-input
846847 description: Upload a document (PDF/DOCX/DOC/PPTX/PPT)
847848 type: file
848849 ```
850+ The `convert_result` output should be a list of strings, one per page.
849851 ```yaml output
850852 output:
851853 convert_result:
@@ -955,17 +957,19 @@ class UpdateCatalogRequest(google.protobuf.message.Message):
955957 """The catalog owner(namespace)."""
956958 @property
957959 def converting_pipelines (self ) -> google .protobuf .internal .containers .RepeatedScalarFieldContainer [builtins .str ]:
958- """Pipelines used for converting documents (i.e., files with pdf, doc[x] or
959- ppt[x] extension) to Markdown. The strings in the list identify the
960- pipelines and MUST have the format `{namespaceID}/{pipelineID}@{version}`.
961- The pipeline recipes MUST have the following variable and output fields:
960+ """Pipelines used for converting page-based documents (i.e., files with pdf,
961+ doc[x] or ppt[x] extension) to Markdown. The strings in the list identify
962+ the pipelines and MUST have the format
963+ `{namespaceID}/{pipelineID}@{version}`. The pipeline recipes MUST have the
964+ following variable and output fields:
962965 ```yaml variable
963966 variable:
964967 document_input:
965968 title: document-input
966969 description: Upload a document (PDF/DOCX/DOC/PPTX/PPT)
967970 type: file
968971 ```
972+ The `convert_result` output should be a list of strings, one per page.
969973 ```yaml output
970974 output:
971975 convert_result:
@@ -1202,6 +1206,7 @@ class File(google.protobuf.message.Message):
12021206 description: Upload a document (PDF/DOCX/DOC/PPTX/PPT)
12031207 type: file
12041208 ```
1209+ The `convert_result` output should be a list of strings, one per page.
12051210 ```yaml output
12061211 output:
12071212 convert_result:
0 commit comments