clarifai-grpc 11.11.2__py3-none-any.whl → 11.11.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- clarifai_grpc/__init__.py +1 -1
- clarifai_grpc/grpc/api/resources_pb2.py +628 -624
- clarifai_grpc/grpc/api/resources_pb2.pyi +12 -1
- clarifai_grpc/grpc/api/service_pb2.py +879 -875
- clarifai_grpc/grpc/api/service_pb2.pyi +63 -6
- clarifai_grpc/grpc/api/service_pb2_grpc.py +3 -3
- clarifai_grpc/grpc/api/status/status_code_pb2.py +2 -2
- clarifai_grpc/grpc/api/status/status_code_pb2.pyi +12 -2
- {clarifai_grpc-11.11.2.dist-info → clarifai_grpc-11.11.3.dist-info}/METADATA +1 -1
- {clarifai_grpc-11.11.2.dist-info → clarifai_grpc-11.11.3.dist-info}/RECORD +13 -13
- {clarifai_grpc-11.11.2.dist-info → clarifai_grpc-11.11.3.dist-info}/WHEEL +0 -0
- {clarifai_grpc-11.11.2.dist-info → clarifai_grpc-11.11.3.dist-info}/licenses/LICENSE +0 -0
- {clarifai_grpc-11.11.2.dist-info → clarifai_grpc-11.11.3.dist-info}/top_level.txt +0 -0
|
@@ -1371,11 +1371,13 @@ class AppResourceCounts(google.protobuf.message.Message):
|
|
|
1371
1371
|
WORKFLOWS_FIELD_NUMBER: builtins.int
|
|
1372
1372
|
MODULES_FIELD_NUMBER: builtins.int
|
|
1373
1373
|
INPUTS_FIELD_NUMBER: builtins.int
|
|
1374
|
+
PIPELINES_FIELD_NUMBER: builtins.int
|
|
1374
1375
|
datasets: builtins.int
|
|
1375
1376
|
models: builtins.int
|
|
1376
1377
|
workflows: builtins.int
|
|
1377
1378
|
modules: builtins.int
|
|
1378
1379
|
inputs: builtins.int
|
|
1380
|
+
pipelines: builtins.int
|
|
1379
1381
|
def __init__(
|
|
1380
1382
|
self,
|
|
1381
1383
|
*,
|
|
@@ -1384,6 +1386,7 @@ class AppResourceCounts(google.protobuf.message.Message):
|
|
|
1384
1386
|
workflows: builtins.int = ...,
|
|
1385
1387
|
modules: builtins.int = ...,
|
|
1386
1388
|
inputs: builtins.int = ...,
|
|
1389
|
+
pipelines: builtins.int = ...,
|
|
1387
1390
|
) -> None: ...
|
|
1388
1391
|
def ClearField(
|
|
1389
1392
|
self,
|
|
@@ -1396,6 +1399,8 @@ class AppResourceCounts(google.protobuf.message.Message):
|
|
|
1396
1399
|
b"models",
|
|
1397
1400
|
"modules",
|
|
1398
1401
|
b"modules",
|
|
1402
|
+
"pipelines",
|
|
1403
|
+
b"pipelines",
|
|
1399
1404
|
"workflows",
|
|
1400
1405
|
b"workflows",
|
|
1401
1406
|
],
|
|
@@ -10839,6 +10844,8 @@ class TaskInputSource(google.protobuf.message.Message):
|
|
|
10839
10844
|
"""Use the inputs from a saved search."""
|
|
10840
10845
|
DATASET: TaskInputSource._TaskInputSourceType.ValueType # 3
|
|
10841
10846
|
"""Inputs from a dataset."""
|
|
10847
|
+
INPUT: TaskInputSource._TaskInputSourceType.ValueType # 4
|
|
10848
|
+
"""Single input (e.g. video livestream input)"""
|
|
10842
10849
|
|
|
10843
10850
|
class TaskInputSourceType(
|
|
10844
10851
|
_TaskInputSourceType, metaclass=_TaskInputSourceTypeEnumTypeWrapper
|
|
@@ -10850,6 +10857,8 @@ class TaskInputSource(google.protobuf.message.Message):
|
|
|
10850
10857
|
"""Use the inputs from a saved search."""
|
|
10851
10858
|
DATASET: TaskInputSource.TaskInputSourceType.ValueType # 3
|
|
10852
10859
|
"""Inputs from a dataset."""
|
|
10860
|
+
INPUT: TaskInputSource.TaskInputSourceType.ValueType # 4
|
|
10861
|
+
"""Single input (e.g. video livestream input)"""
|
|
10853
10862
|
|
|
10854
10863
|
TYPE_FIELD_NUMBER: builtins.int
|
|
10855
10864
|
ID_FIELD_NUMBER: builtins.int
|
|
@@ -10991,7 +11000,9 @@ class TaskReviewManualStrategyInfo(google.protobuf.message.Message):
|
|
|
10991
11000
|
SAMPLE_PERCENTAGE_FIELD_NUMBER: builtins.int
|
|
10992
11001
|
APPROVAL_THRESHOLD_FIELD_NUMBER: builtins.int
|
|
10993
11002
|
sample_percentage: builtins.float
|
|
10994
|
-
"""This field represents the percentage of inputs that will be reviewed by reviewers. It is a value between 0 and 1.
|
|
11003
|
+
"""This field represents the percentage of inputs that will be reviewed by reviewers. It is a value between 0 and 1.
|
|
11004
|
+
Deprecated: Not used.
|
|
11005
|
+
"""
|
|
10995
11006
|
approval_threshold: builtins.int
|
|
10996
11007
|
"""Deprecated: Use consensus_strategy_info.approval_threshold_reviewers."""
|
|
10997
11008
|
def __init__(
|