@@ -3678,6 +3678,23 @@ definitions:
36783678 type : string
36793679 title : Image type base64
36803680 title : ClassificationInput represents the input of classification task
3681+ v1alphaClassificationInputStream :
3682+ type : object
3683+ properties :
3684+ file_lengths :
3685+ type : array
3686+ items :
3687+ type : string
3688+ format : uint64
3689+ title : The list of file length for each uploaded binary file
3690+ content :
3691+ type : string
3692+ format : byte
3693+ title : Content of images in bytes
3694+ title : ClassificationInputStream represents the input of classification task when using stream method
3695+ required :
3696+ - file_lengths
3697+ - content
36813698 v1alphaClassificationOutput :
36823699 type : object
36833700 properties :
@@ -4049,6 +4066,23 @@ definitions:
40494066 type : string
40504067 title : Image type base64
40514068 title : DetectionInput represents the input of detection task
4069+ v1alphaDetectionInputStream :
4070+ type : object
4071+ properties :
4072+ file_lengths :
4073+ type : array
4074+ items :
4075+ type : string
4076+ format : uint64
4077+ title : The list of file length for each uploaded binary file
4078+ content :
4079+ type : string
4080+ format : byte
4081+ title : Content of images in bytes
4082+ title : DetectionInputStream represents the input of detection task when using stream method
4083+ required :
4084+ - file_lengths
4085+ - content
40524086 v1alphaDetectionObject :
40534087 type : object
40544088 properties :
@@ -4228,6 +4262,23 @@ definitions:
42284262 type : string
42294263 title : Image type base64
42304264 title : InstanceSegmentationInput represents the input of instance segmentation task
4265+ v1alphaInstanceSegmentationInputStream :
4266+ type : object
4267+ properties :
4268+ file_lengths :
4269+ type : array
4270+ items :
4271+ type : string
4272+ format : uint64
4273+ title : The list of file length for each uploaded binary file
4274+ content :
4275+ type : string
4276+ format : byte
4277+ title : Content of images in bytes
4278+ title : InstanceSegmentationInputStream represents the input of instance segmentation task when using stream method
4279+ required :
4280+ - file_lengths
4281+ - content
42314282 v1alphaInstanceSegmentationObject :
42324283 type : object
42334284 properties :
@@ -4290,6 +4341,23 @@ definitions:
42904341 type : string
42914342 title : Image type base64
42924343 title : KeypointInput represents the input of keypoint detection task
4344+ v1alphaKeypointInputStream :
4345+ type : object
4346+ properties :
4347+ file_lengths :
4348+ type : array
4349+ items :
4350+ type : string
4351+ format : uint64
4352+ title : The list of file length for each uploaded binary file
4353+ content :
4354+ type : string
4355+ format : byte
4356+ title : Content of images in bytes
4357+ title : KeypointInputStream represents the input of keypoint detection task when using stream method
4358+ required :
4359+ - file_lengths
4360+ - content
42934361 v1alphaKeypointObject :
42944362 type : object
42954363 properties :
@@ -4989,6 +5057,23 @@ definitions:
49895057 type : string
49905058 title : Image type base64
49915059 title : OcrInput represents the input of ocr task
5060+ v1alphaOcrInputStream :
5061+ type : object
5062+ properties :
5063+ file_lengths :
5064+ type : array
5065+ items :
5066+ type : string
5067+ format : uint64
5068+ title : The list of file length for each uploaded binary file
5069+ content :
5070+ type : string
5071+ format : byte
5072+ title : Content of images in bytes
5073+ title : OcrInputStream represents the input of ocr task when using stream method
5074+ required :
5075+ - file_lengths
5076+ - content
49925077 v1alphaOcrObject :
49935078 type : object
49945079 properties :
@@ -5264,6 +5349,23 @@ definitions:
52645349 type : string
52655350 title : Image type base64
52665351 title : SemanticSegmentationInput represents the input of semantic segmentation task
5352+ v1alphaSemanticSegmentationInputStream :
5353+ type : object
5354+ properties :
5355+ file_lengths :
5356+ type : array
5357+ items :
5358+ type : string
5359+ format : uint64
5360+ title : The list of file length for each uploaded binary file
5361+ content :
5362+ type : string
5363+ format : byte
5364+ title : Content of images in bytes
5365+ title : SemanticSegmentationInputStream represents the input of semantic segmentation task when using stream method
5366+ required :
5367+ - file_lengths
5368+ - content
52675369 v1alphaSemanticSegmentationOutput :
52685370 type : object
52695371 properties :
@@ -5548,6 +5650,37 @@ definitions:
55485650 $ref : ' #/definitions/v1alphaUnspecifiedInput'
55495651 title : The unspecified task input
55505652 title : Input represents the input to trigger a model instance
5653+ v1alphaTaskInputStream :
5654+ type : object
5655+ properties :
5656+ classification :
5657+ $ref : ' #/definitions/v1alphaClassificationInputStream'
5658+ title : The classification input
5659+ detection :
5660+ $ref : ' #/definitions/v1alphaDetectionInputStream'
5661+ title : The detection input
5662+ keypoint :
5663+ $ref : ' #/definitions/v1alphaKeypointInputStream'
5664+ title : The keypoint input
5665+ ocr :
5666+ $ref : ' #/definitions/v1alphaOcrInputStream'
5667+ title : The ocr input
5668+ instance_segmentation :
5669+ $ref : ' #/definitions/v1alphaInstanceSegmentationInputStream'
5670+ title : The instance segmentation input
5671+ semantic_segmentation :
5672+ $ref : ' #/definitions/v1alphaSemanticSegmentationInputStream'
5673+ title : The semantic segmentation input
5674+ text_to_image :
5675+ $ref : ' #/definitions/v1alphaTextToImageInput'
5676+ title : The text to image input
5677+ text_generation :
5678+ $ref : ' #/definitions/v1alphaTextGenerationInput'
5679+ title : The text generation input
5680+ unspecified :
5681+ $ref : ' #/definitions/v1alphaUnspecifiedInput'
5682+ title : The unspecified task input
5683+ title : TaskInputStream represents the input to trigger a model instance with stream method
55515684 v1alphaTestModelInstanceBinaryFileUploadResponse :
55525685 type : object
55535686 properties :
0 commit comments