You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: generated/docs/ImageQuery.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ Name | Type | Description | Notes
17
17
**confidence_threshold** | **float** | Min confidence needed to accept the response of the image query. | [readonly]
18
18
**rois** | [**[ROI], none_type**](ROI.md) | An array of regions of interest (bounding boxes) collected on image | [readonly]
19
19
**text** | **str, none_type** | A text field on image query. | [readonly]
20
-
**done_processing** | **bool, none_type** | EDGE ONLY - Whether the image query has completed escalating and will receive no new results. | [readonly] defaults to False
20
+
**done_processing** | **bool** | EDGE ONLY - Whether the image query has completed escalating and will receive no new results. | [optional] if omitted the server will use the default value of False
21
21
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
22
22
23
23
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
Copy file name to clipboardExpand all lines: generated/groundlight_openapi_client/model/image_query.py
+3-8Lines changed: 3 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -159,10 +159,7 @@ def openapi_types():
159
159
str,
160
160
none_type,
161
161
), # noqa: E501
162
-
"done_processing": (
163
-
bool,
164
-
none_type,
165
-
), # noqa: E501
162
+
"done_processing": (bool,), # noqa: E501
166
163
}
167
164
168
165
@cached_property
@@ -197,7 +194,6 @@ def discriminator():
197
194
"confidence_threshold", # noqa: E501
198
195
"rois", # noqa: E501
199
196
"text", # noqa: E501
200
-
"done_processing", # noqa: E501
201
197
}
202
198
203
199
_composed_schemas= {}
@@ -238,7 +234,6 @@ def _from_openapi_data(
238
234
text (str, none_type): A text field on image query.
239
235
240
236
Keyword Args:
241
-
done_processing (bool, none_type): EDGE ONLY - Whether the image query has completed escalating and will receive no new results.. defaults to False # noqa: E501
242
237
_check_type (bool): if True, values for parameters in openapi_types
243
238
will be type checked and a TypeError will be
244
239
raised if the wrong type is input.
@@ -269,9 +264,9 @@ def _from_openapi_data(
269
264
Animal class but this time we won't travel
270
265
through its discriminator because we passed in
271
266
_visited_composed_classes = (Animal,)
267
+
done_processing (bool): EDGE ONLY - Whether the image query has completed escalating and will receive no new results.. [optional] if omitted the server will use the default value of False # noqa: E501
done_processing (bool): EDGE ONLY - Whether the image query has completed escalating and will receive no new results.. [optional] if omitted the server will use the default value of False # noqa: E501
0 commit comments