clarifai 10.5.3__py3-none-any.whl → 10.5.4__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.
Files changed (86) hide show
  1. clarifai/client/input.py +116 -45
  2. clarifai/constants/dataset.py +2 -0
  3. clarifai/datasets/export/inputs_annotations.py +6 -2
  4. clarifai/rag/rag.py +8 -0
  5. clarifai/utils/constants.py +1 -0
  6. clarifai/utils/logging.py +3 -1
  7. clarifai/versions.py +1 -1
  8. {clarifai-10.5.3.dist-info → clarifai-10.5.4.dist-info}/METADATA +1 -1
  9. {clarifai-10.5.3.dist-info → clarifai-10.5.4.dist-info}/RECORD +13 -86
  10. {clarifai-10.5.3.dist-info → clarifai-10.5.4.dist-info}/WHEEL +1 -1
  11. clarifai/__pycache__/__init__.cpython-310.pyc +0 -0
  12. clarifai/__pycache__/errors.cpython-310.pyc +0 -0
  13. clarifai/__pycache__/versions.cpython-310.pyc +0 -0
  14. clarifai/client/__pycache__/__init__.cpython-310.pyc +0 -0
  15. clarifai/client/__pycache__/app.cpython-310.pyc +0 -0
  16. clarifai/client/__pycache__/base.cpython-310.pyc +0 -0
  17. clarifai/client/__pycache__/dataset.cpython-310.pyc +0 -0
  18. clarifai/client/__pycache__/input.cpython-310.pyc +0 -0
  19. clarifai/client/__pycache__/lister.cpython-310.pyc +0 -0
  20. clarifai/client/__pycache__/model.cpython-310.pyc +0 -0
  21. clarifai/client/__pycache__/module.cpython-310.pyc +0 -0
  22. clarifai/client/__pycache__/runner.cpython-310.pyc +0 -0
  23. clarifai/client/__pycache__/search.cpython-310.pyc +0 -0
  24. clarifai/client/__pycache__/user.cpython-310.pyc +0 -0
  25. clarifai/client/__pycache__/workflow.cpython-310.pyc +0 -0
  26. clarifai/client/auth/__pycache__/__init__.cpython-310.pyc +0 -0
  27. clarifai/client/auth/__pycache__/helper.cpython-310.pyc +0 -0
  28. clarifai/client/auth/__pycache__/register.cpython-310.pyc +0 -0
  29. clarifai/client/auth/__pycache__/stub.cpython-310.pyc +0 -0
  30. clarifai/constants/__pycache__/dataset.cpython-310.pyc +0 -0
  31. clarifai/constants/__pycache__/model.cpython-310.pyc +0 -0
  32. clarifai/constants/__pycache__/search.cpython-310.pyc +0 -0
  33. clarifai/datasets/__pycache__/__init__.cpython-310.pyc +0 -0
  34. clarifai/datasets/export/__pycache__/__init__.cpython-310.pyc +0 -0
  35. clarifai/datasets/export/__pycache__/inputs_annotations.cpython-310.pyc +0 -0
  36. clarifai/datasets/upload/__pycache__/__init__.cpython-310.pyc +0 -0
  37. clarifai/datasets/upload/__pycache__/base.cpython-310.pyc +0 -0
  38. clarifai/datasets/upload/__pycache__/features.cpython-310.pyc +0 -0
  39. clarifai/datasets/upload/__pycache__/image.cpython-310.pyc +0 -0
  40. clarifai/datasets/upload/__pycache__/text.cpython-310.pyc +0 -0
  41. clarifai/datasets/upload/__pycache__/utils.cpython-310.pyc +0 -0
  42. clarifai/models/__pycache__/__init__.cpython-310.pyc +0 -0
  43. clarifai/models/model_serving/__pycache__/__init__.cpython-310.pyc +0 -0
  44. clarifai/models/model_serving/__pycache__/constants.cpython-310.pyc +0 -0
  45. clarifai/models/model_serving/cli/__pycache__/__init__.cpython-310.pyc +0 -0
  46. clarifai/models/model_serving/cli/__pycache__/_utils.cpython-310.pyc +0 -0
  47. clarifai/models/model_serving/cli/__pycache__/base.cpython-310.pyc +0 -0
  48. clarifai/models/model_serving/cli/__pycache__/build.cpython-310.pyc +0 -0
  49. clarifai/models/model_serving/cli/__pycache__/create.cpython-310.pyc +0 -0
  50. clarifai/models/model_serving/model_config/__pycache__/__init__.cpython-310.pyc +0 -0
  51. clarifai/models/model_serving/model_config/__pycache__/base.cpython-310.pyc +0 -0
  52. clarifai/models/model_serving/model_config/__pycache__/config.cpython-310.pyc +0 -0
  53. clarifai/models/model_serving/model_config/__pycache__/inference_parameter.cpython-310.pyc +0 -0
  54. clarifai/models/model_serving/model_config/__pycache__/output.cpython-310.pyc +0 -0
  55. clarifai/models/model_serving/model_config/triton/__pycache__/__init__.cpython-310.pyc +0 -0
  56. clarifai/models/model_serving/model_config/triton/__pycache__/serializer.cpython-310.pyc +0 -0
  57. clarifai/models/model_serving/model_config/triton/__pycache__/triton_config.cpython-310.pyc +0 -0
  58. clarifai/models/model_serving/model_config/triton/__pycache__/wrappers.cpython-310.pyc +0 -0
  59. clarifai/models/model_serving/repo_build/__pycache__/__init__.cpython-310.pyc +0 -0
  60. clarifai/models/model_serving/repo_build/__pycache__/build.cpython-310.pyc +0 -0
  61. clarifai/models/model_serving/repo_build/static_files/__pycache__/base_test.cpython-310-pytest-7.2.0.pyc +0 -0
  62. clarifai/rag/__pycache__/__init__.cpython-310.pyc +0 -0
  63. clarifai/rag/__pycache__/rag.cpython-310.pyc +0 -0
  64. clarifai/rag/__pycache__/utils.cpython-310.pyc +0 -0
  65. clarifai/runners/deepgram_live_transcribe.py +0 -98
  66. clarifai/runners/deepgram_live_transcribe.py~ +0 -98
  67. clarifai/runners/deepgram_runner.py +0 -131
  68. clarifai/runners/deepgram_runner.py~ +0 -130
  69. clarifai/runners/example_llama2.py~ +0 -72
  70. clarifai/runners/matt_example.py +0 -89
  71. clarifai/runners/matt_example.py~ +0 -87
  72. clarifai/runners/matt_llm_example.py +0 -129
  73. clarifai/runners/matt_llm_example.py~ +0 -128
  74. clarifai/schema/__pycache__/search.cpython-310.pyc +0 -0
  75. clarifai/urls/__pycache__/helper.cpython-310.pyc +0 -0
  76. clarifai/utils/__pycache__/__init__.cpython-310.pyc +0 -0
  77. clarifai/utils/__pycache__/logging.cpython-310.pyc +0 -0
  78. clarifai/utils/__pycache__/misc.cpython-310.pyc +0 -0
  79. clarifai/utils/__pycache__/model_train.cpython-310.pyc +0 -0
  80. clarifai/workflows/__pycache__/__init__.cpython-310.pyc +0 -0
  81. clarifai/workflows/__pycache__/export.cpython-310.pyc +0 -0
  82. clarifai/workflows/__pycache__/utils.cpython-310.pyc +0 -0
  83. clarifai/workflows/__pycache__/validate.cpython-310.pyc +0 -0
  84. {clarifai-10.5.3.dist-info → clarifai-10.5.4.dist-info}/LICENSE +0 -0
  85. {clarifai-10.5.3.dist-info → clarifai-10.5.4.dist-info}/entry_points.txt +0 -0
  86. {clarifai-10.5.3.dist-info → clarifai-10.5.4.dist-info}/top_level.txt +0 -0
clarifai/client/input.py CHANGED
@@ -65,7 +65,7 @@ class Inputs(Lister, BaseClient):
65
65
 
66
66
  @staticmethod
67
67
  def _get_proto(input_id: str,
68
- dataset_id: Union[str, None],
68
+ dataset_id: str = None,
69
69
  imagepb: Image = None,
70
70
  video_pb: Video = None,
71
71
  audio_pb: Audio = None,
@@ -481,7 +481,11 @@ class Inputs(Lister, BaseClient):
481
481
  return input_protos
482
482
 
483
483
  @staticmethod
484
- def get_bbox_proto(input_id: str, label: str, bbox: List, label_id: str = None) -> Annotation:
484
+ def get_bbox_proto(input_id: str,
485
+ label: str,
486
+ bbox: List,
487
+ label_id: str = None,
488
+ annot_id: str = None) -> Annotation:
485
489
  """Create an annotation proto for each bounding box, label input pair.
486
490
 
487
491
  Args:
@@ -489,6 +493,7 @@ class Inputs(Lister, BaseClient):
489
493
  label (str): annotation label name
490
494
  bbox (List): a list of a single bbox's coordinates. # bbox ordering: [xmin, ymin, xmax, ymax]
491
495
  label_id (str): annotation label ID
496
+ annot_id (str): annotation ID
492
497
 
493
498
  Returns:
494
499
  An annotation object for the specified input ID.
@@ -499,31 +504,35 @@ class Inputs(Lister, BaseClient):
499
504
  """
500
505
  if not isinstance(bbox, list):
501
506
  raise UserError("must be a list of bbox cooridnates")
502
- input_annot_proto = resources_pb2.Annotation(
503
- input_id=input_id,
504
- data=resources_pb2.Data(regions=[
505
- resources_pb2.Region(
506
- region_info=resources_pb2.RegionInfo(bounding_box=resources_pb2.BoundingBox(
507
- # bbox ordering: [xmin, ymin, xmax, ymax]
508
- # top_row must be less than bottom row
509
- # left_col must be less than right col
510
- top_row=bbox[1], #y_min
511
- left_col=bbox[0], #x_min
512
- bottom_row=bbox[3], #y_max
513
- right_col=bbox[2] #x_max
514
- )),
515
- data=resources_pb2.Data(concepts=[
516
- resources_pb2.Concept(
517
- id=f"id-{''.join(label.split(' '))}", name=label, value=1.)
518
- if not label_id else resources_pb2.Concept(id=label_id, name=label, value=1.)
519
- ]))
520
- ]))
507
+ annot_data = resources_pb2.Data(regions=[
508
+ resources_pb2.Region(
509
+ region_info=resources_pb2.RegionInfo(bounding_box=resources_pb2.BoundingBox(
510
+ # bbox ordering: [xmin, ymin, xmax, ymax]
511
+ # top_row must be less than bottom row
512
+ # left_col must be less than right col
513
+ top_row=bbox[1], #y_min
514
+ left_col=bbox[0], #x_min
515
+ bottom_row=bbox[3], #y_max
516
+ right_col=bbox[2] #x_max
517
+ )),
518
+ data=resources_pb2.Data(concepts=[
519
+ resources_pb2.Concept(id=f"id-{''.join(label.split(' '))}", name=label, value=1.)
520
+ if not label_id else resources_pb2.Concept(id=label_id, name=label, value=1.)
521
+ ]))
522
+ ])
523
+ if annot_id:
524
+ input_annot_proto = resources_pb2.Annotation(id=annot_id, input_id=input_id, data=annot_data)
525
+ else:
526
+ input_annot_proto = resources_pb2.Annotation(input_id=input_id, data=annot_data)
521
527
 
522
528
  return input_annot_proto
523
529
 
524
530
  @staticmethod
525
- def get_mask_proto(input_id: str, label: str, polygons: List[List[float]],
526
- label_id: str = None) -> Annotation:
531
+ def get_mask_proto(input_id: str,
532
+ label: str,
533
+ polygons: List[List[float]],
534
+ label_id: str = None,
535
+ annot_id: str = None) -> Annotation:
527
536
  """Create an annotation proto for each polygon box, label input pair.
528
537
 
529
538
  Args:
@@ -531,6 +540,7 @@ class Inputs(Lister, BaseClient):
531
540
  label (str): annotation label name
532
541
  polygons (List): Polygon x,y points iterable
533
542
  label_id (str): annotation label ID
543
+ annot_id (str): annotation ID
534
544
 
535
545
  Returns:
536
546
  An annotation object for the specified input ID.
@@ -541,23 +551,24 @@ class Inputs(Lister, BaseClient):
541
551
  """
542
552
  if not isinstance(polygons, list):
543
553
  raise UserError("polygons must be a list of points")
544
- input_mask_proto = resources_pb2.Annotation(
545
- input_id=input_id,
546
- data=resources_pb2.Data(regions=[
547
- resources_pb2.Region(
548
- region_info=resources_pb2.RegionInfo(polygon=resources_pb2.Polygon(
549
- points=[
550
- resources_pb2.Point(
551
- row=_point[1], # row is y point
552
- col=_point[0], # col is x point
553
- visibility="VISIBLE") for _point in polygons
554
- ])),
555
- data=resources_pb2.Data(concepts=[
556
- resources_pb2.Concept(
557
- id=f"id-{''.join(label.split(' '))}", name=label, value=1.)
558
- if not label_id else resources_pb2.Concept(id=label_id, name=label, value=1.)
559
- ]))
560
- ]))
554
+ annot_data = resources_pb2.Data(regions=[
555
+ resources_pb2.Region(
556
+ region_info=resources_pb2.RegionInfo(polygon=resources_pb2.Polygon(
557
+ points=[
558
+ resources_pb2.Point(
559
+ row=_point[1], # row is y point
560
+ col=_point[0], # col is x point
561
+ visibility="VISIBLE") for _point in polygons
562
+ ])),
563
+ data=resources_pb2.Data(concepts=[
564
+ resources_pb2.Concept(id=f"id-{''.join(label.split(' '))}", name=label, value=1.)
565
+ if not label_id else resources_pb2.Concept(id=label_id, name=label, value=1.)
566
+ ]))
567
+ ])
568
+ if annot_id:
569
+ input_mask_proto = resources_pb2.Annotation(id=annot_id, input_id=input_id, data=annot_data)
570
+ else:
571
+ input_mask_proto = resources_pb2.Annotation(input_id=input_id, data=annot_data)
561
572
 
562
573
  return input_mask_proto
563
574
 
@@ -707,7 +718,7 @@ class Inputs(Lister, BaseClient):
707
718
 
708
719
  return input_job_id, response
709
720
 
710
- def patch_inputs(self, inputs: List[Input], action: str = 'merge') -> str:
721
+ def patch_inputs(self, inputs: List[Input], action: str = 'merge') -> None:
711
722
  """Patch list of input objects to the app.
712
723
 
713
724
  Args:
@@ -719,7 +730,6 @@ class Inputs(Lister, BaseClient):
719
730
  """
720
731
  if not isinstance(inputs, list):
721
732
  raise UserError("inputs must be a list of Input objects")
722
- uuid.uuid4().hex # generate a unique id for this job
723
733
  request = service_pb2.PatchInputsRequest(
724
734
  user_app_id=self.user_app_id, inputs=inputs, action=action)
725
735
  response = self._grpc_request(self.STUB.PatchInputs, request)
@@ -727,9 +737,9 @@ class Inputs(Lister, BaseClient):
727
737
  try:
728
738
  self.logger.warning(f"Patch inputs failed, status: {response.annotations[0].status}")
729
739
  except Exception:
730
- self.logger.warning(f"Patch inputs failed, status: {response.status.details}")
731
-
732
- self.logger.info("\nPatch Inputs Successful\n%s", response.status)
740
+ self.logger.warning(f"Patch inputs failed, status: {response.status}")
741
+ else:
742
+ self.logger.info("\nPatch Inputs Successful\n%s", response.status)
733
743
 
734
744
  def upload_annotations(self, batch_annot: List[resources_pb2.Annotation], show_log: bool = True
735
745
  ) -> Union[List[resources_pb2.Annotation], List[None]]:
@@ -761,6 +771,67 @@ class Inputs(Lister, BaseClient):
761
771
 
762
772
  return retry_upload
763
773
 
774
+ def patch_annotations(self, batch_annot: List[resources_pb2.Annotation],
775
+ action: str = 'merge') -> None:
776
+ """Patch image annotations to app.
777
+
778
+ Args:
779
+ batch_annot: annot batch protos
780
+ action (str): Action to perform on the input. Options: 'merge', 'overwrite', 'remove'.
781
+
782
+ """
783
+ if not isinstance(batch_annot, list):
784
+ raise UserError("batch_annot must be a list of Annotation objects")
785
+ request = service_pb2.PatchAnnotationsRequest(
786
+ user_app_id=self.user_app_id, annotations=batch_annot, action=action)
787
+ response = self._grpc_request(self.STUB.PatchAnnotations, request)
788
+ response_dict = MessageToDict(response)
789
+ if response.status.code != status_code_pb2.SUCCESS:
790
+ try:
791
+ for annot in response_dict["annotations"]:
792
+ if annot['status']['code'] != status_code_pb2.ANNOTATION_SUCCESS:
793
+ self.logger.warning(f"Patch annotations failed, status: {annot['status']}")
794
+ except Exception:
795
+ self.logger.warning(f"Patch annotations failed due to {response.status}")
796
+ else:
797
+ self.logger.info("\nPatch Annotations Uploaded Successful\n%s", response.status)
798
+
799
+ def patch_concepts(self,
800
+ concept_ids: List[str],
801
+ labels: List[str] = [],
802
+ values: List[float] = [],
803
+ action: str = 'overwrite') -> None:
804
+ """Patch concepts to app.
805
+
806
+ Args:
807
+ concept_ids: A list of concept
808
+ labels: A list of label names
809
+ values: concept value
810
+ action (str): Action to perform on the input. Options: 'overwrite'.
811
+
812
+ """
813
+ if not labels:
814
+ labels = list(concept_ids)
815
+ if values:
816
+ concepts=[
817
+ resources_pb2.Concept(
818
+ id=concept_id, name=label, value=value)\
819
+ for concept_id, label, value in zip(concept_ids, labels, values)
820
+ ]
821
+ else:
822
+ concepts=[
823
+ resources_pb2.Concept(
824
+ id=concept_id, name=label, value=1.)\
825
+ for concept_id, label in zip(concept_ids, labels)
826
+ ]
827
+ request = service_pb2.PatchConceptsRequest(
828
+ user_app_id=self.user_app_id, concepts=concepts, action=action)
829
+ response = self._grpc_request(self.STUB.PatchConcepts, request)
830
+ if response.status.code != status_code_pb2.SUCCESS:
831
+ self.logger.warning(f"Patch Concepts failed, status: {response.status.details}")
832
+ else:
833
+ self.logger.info("\nPatch Concepts Successful\n%s", response.status)
834
+
764
835
  def _upload_batch(self, inputs: List[Input]) -> List[Input]:
765
836
  """Upload a batch of input objects to the app.
766
837
 
@@ -22,3 +22,5 @@ TASK_TO_ANNOTATION_TYPE = {
22
22
  }
23
23
 
24
24
  MAX_RETRIES = 2
25
+
26
+ CONTENT_TYPE = {"json": "application/json", "zip": "application/zip"}
@@ -12,6 +12,7 @@ from google.protobuf.json_format import MessageToDict
12
12
  from PIL import ImageFile
13
13
  from tqdm import tqdm
14
14
 
15
+ from clarifai.constants.dataset import CONTENT_TYPE
15
16
  from clarifai.errors import UserError
16
17
  from clarifai.utils.logging import get_logger
17
18
 
@@ -61,8 +62,11 @@ class DatasetExportReader:
61
62
  def _download_temp_archive(self, archive_url: str,
62
63
  chunk_size: int = 128) -> tempfile.TemporaryFile:
63
64
  """Downloads the temp archive of InputBatches."""
64
- session = requests.Session()
65
- r = session.get(archive_url, stream=True)
65
+ r = self.session.get(archive_url, stream=True)
66
+ if r.headers['content-type'] == CONTENT_TYPE['json']:
67
+ raise Exception("File is a json file :\n {}".format(r.json()))
68
+ elif r.headers['content-type'] != CONTENT_TYPE['zip']:
69
+ raise Exception('File is not a zip file')
66
70
  temp_file = tempfile.TemporaryFile()
67
71
  for chunk in r.iter_content(chunk_size=chunk_size):
68
72
  temp_file.write(chunk)
clarifai/rag/rag.py CHANGED
@@ -14,7 +14,9 @@ from clarifai.constants.rag import MAX_UPLOAD_BATCH_SIZE
14
14
  from clarifai.errors import UserError
15
15
  from clarifai.rag.utils import (convert_messages_to_str, format_assistant_message, load_documents,
16
16
  split_document)
17
+ from clarifai.utils.constants import CLARIFAI_USER_ID_ENV_VAR
17
18
  from clarifai.utils.logging import get_logger
19
+ from clarifai.utils.misc import get_from_dict_or_env
18
20
 
19
21
  DEFAULT_RAG_PROMPT_TEMPLATE = "Context information is below:\n{data.hits}\nGiven the context information and not prior knowledge, answer the query.\nQuery: {data.text.raw}\nAnswer: "
20
22
 
@@ -75,6 +77,12 @@ class RAG:
75
77
  >>> rag_agent = RAG.setup(app_url=YOUR_APP_URL)
76
78
  >>> rag_agent.chat(messages=[{"role":"human", "content":"What is Clarifai"}])
77
79
  """
80
+ if not app_url:
81
+ try:
82
+ user_id = get_from_dict_or_env(key="user_id", env_key=CLARIFAI_USER_ID_ENV_VAR, **kwargs)
83
+ except Exception:
84
+ pass
85
+
78
86
  now_ts = uuid.uuid4().hex[:10]
79
87
  if user_id and not app_url:
80
88
  user = User(user_id=user_id, base_url=base_url, pat=pat)
@@ -1,2 +1,3 @@
1
1
  CLARIFAI_PAT_ENV_VAR = "CLARIFAI_PAT"
2
2
  CLARIFAI_SESSION_TOKEN_ENV_VAR = "CLARIFAI_SESSION_TOKEN"
3
+ CLARIFAI_USER_ID_ENV_VAR = "CLARIFAI_USER_ID"
clarifai/utils/logging.py CHANGED
@@ -3,6 +3,7 @@ from collections import defaultdict
3
3
  from typing import Dict, List, Optional, Union
4
4
 
5
5
  from rich import print as rprint
6
+ from rich.console import Console
6
7
  from rich.logging import RichHandler
7
8
  from rich.table import Table
8
9
  from rich.traceback import install
@@ -84,7 +85,8 @@ def _configure_logger(name: str, logger_level: Union[int, str] = logging.NOTSET)
84
85
  logger.removeHandler(handler)
85
86
 
86
87
  # Add the new rich handler and formatter
87
- handler = RichHandler(rich_tracebacks=True, log_time_format="%Y-%m-%d %H:%M:%S")
88
+ handler = RichHandler(
89
+ rich_tracebacks=True, log_time_format="%Y-%m-%d %H:%M:%S", console=Console(width=255))
88
90
  formatter = logging.Formatter('%(name)s: %(message)s')
89
91
  handler.setFormatter(formatter)
90
92
  logger.addHandler(handler)
clarifai/versions.py CHANGED
@@ -1,6 +1,6 @@
1
1
  import os
2
2
 
3
- CLIENT_VERSION = "10.5.3"
3
+ CLIENT_VERSION = "10.5.4"
4
4
  OS_VER = os.sys.platform
5
5
  PYTHON_VERSION = '.'.join(
6
6
  map(str, [os.sys.version_info.major, os.sys.version_info.minor, os.sys.version_info.micro]))
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: clarifai
3
- Version: 10.5.3
3
+ Version: 10.5.4
4
4
  Summary: Clarifai Python SDK
5
5
  Home-page: https://github.com/Clarifai/clarifai-python
6
6
  Author: Clarifai
@@ -1,68 +1,37 @@
1
1
  clarifai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  clarifai/cli.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
3
  clarifai/errors.py,sha256=RwzTajwds51wLD0MVlMC5kcpBnzRpreDLlazPSBZxrg,2605
4
- clarifai/versions.py,sha256=wVsoFKnImyjjiEw9dKq-aaq63y7Qv8coXeod6oIuWHU,186
5
- clarifai/__pycache__/__init__.cpython-310.pyc,sha256=nvGQh8hh97YZ3TCPrTZ9AtaxoEfGGGSQBAIl_Giue5A,153
6
- clarifai/__pycache__/errors.cpython-310.pyc,sha256=QE9YjhhwdyWlK2-YkRo97FaIw0mmJU6KjSNQhjWv9dY,3046
7
- clarifai/__pycache__/versions.cpython-310.pyc,sha256=dX3HFoo2pgJcjlXkcwBewqd3LGOPQPCIcmGOfu3l1r0,346
4
+ clarifai/versions.py,sha256=_ce_y-64EmSRIfWAk92G7sa7D3E2Wk4HRM5Sh2iBBTo,186
8
5
  clarifai/client/__init__.py,sha256=xI1U0l5AZdRThvQAXCLsd9axxyFzXXJ22m8LHqVjQRU,662
9
6
  clarifai/client/app.py,sha256=br3C2paGmWzKu4eG0kUN1m8kDPKqpGPq28f7Xiy2v54,27329
10
7
  clarifai/client/base.py,sha256=wStnn_gS6sYo36OlYRzEkOFShXOQg3DKUp8i6DomAxQ,7178
11
8
  clarifai/client/dataset.py,sha256=XX-J-9Ict1CQrEycq-JbdxUTuucSgLeDSvnlHE1ucQY,29903
12
- clarifai/client/input.py,sha256=Av_gPrmwa1vorDs5Pz9jUbY1MwXHYFb3NyF_a1S1aII,41630
9
+ clarifai/client/input.py,sha256=ZLqa1jGx4NgCbunOTpJxCq4lDQ5xAf4GQ0rsZY8AHCM,44456
13
10
  clarifai/client/lister.py,sha256=03KGMvs5RVyYqxLsSrWhNc34I8kiF1Ph0NeyEwu7nMU,2082
14
11
  clarifai/client/model.py,sha256=Q0XEOWaZvSFPx7cLp4xJcwV5SVD1iU_6-DdDJmF-Hfk,72623
15
12
  clarifai/client/module.py,sha256=360JaOasX0DZCNE_Trj0LNTr-T_tUDZLfGpz0CdIi78,4248
16
13
  clarifai/client/search.py,sha256=iwZqwuEodbjIOEPMIjpic8caFGg3u51RK816pr-574o,14964
17
14
  clarifai/client/user.py,sha256=EQTeotfYTNedGcbTICYOUJqKgWhfVHvaMRTJ1hdoIdQ,10372
18
15
  clarifai/client/workflow.py,sha256=e3axkhU6c6WcxK9P5tgmnV464k-afslSzsSXx6nSMgA,10560
19
- clarifai/client/__pycache__/__init__.cpython-310.pyc,sha256=sjcH3Oc-vVFHbcem6LRCcjDRdT5dXQUHptNByd1Y6xc,887
20
- clarifai/client/__pycache__/app.cpython-310.pyc,sha256=vvLJXma0JaP5rVWHrCGDJMa_ocnHYZ2h022C03AQvak,23570
21
- clarifai/client/__pycache__/base.cpython-310.pyc,sha256=wzkJM4ZlSCOjYvxlXS0Aq7VEGLjWqDxMdgFfOLTJi6k,6088
22
- clarifai/client/__pycache__/dataset.cpython-310.pyc,sha256=ebXy13jbR8O5mpEVaU-5hVY1dN7Ospogf2W3rHwgNrk,24050
23
- clarifai/client/__pycache__/input.cpython-310.pyc,sha256=byqp-8_fDQYrk7g0mwKO4P80GbbAbwB_8BXvgFVGqn8,29926
24
- clarifai/client/__pycache__/lister.cpython-310.pyc,sha256=Ki9mIbvw3SbtNuMELvtS0yuPOiTi6QAx3UO3WWXCvqw,2132
25
- clarifai/client/__pycache__/model.cpython-310.pyc,sha256=yncHpOMCTnukuSrKVgf9Ls9keY8y3fPjKR7tAfx0jcw,21626
26
- clarifai/client/__pycache__/module.cpython-310.pyc,sha256=nw-HGdHJ33Perc2ScmN1tSVkqtkv3wBN5--0hEzBknk,4086
27
- clarifai/client/__pycache__/runner.cpython-310.pyc,sha256=zk40TydNuzhySGzWbCm3U8FP_DX5KkJAgWaqSULwtpk,8168
28
- clarifai/client/__pycache__/search.cpython-310.pyc,sha256=t2eHfjZZtkU9DJFtySSwlJHzYr2gT6n9cVx_vs64yGI,9001
29
- clarifai/client/__pycache__/user.cpython-310.pyc,sha256=dW1_DnCuIb-mMSKP_IQMs9GtLxK1SEt6ccf5YApUHiI,10068
30
- clarifai/client/__pycache__/workflow.cpython-310.pyc,sha256=S5F7LoibyzSQDr3meyJYXJo8opUA7sW7RlzxQ180diE,8993
31
16
  clarifai/client/auth/__init__.py,sha256=7EwR0NrozkAUwpUnCsqXvE_p0wqx_SelXlSpKShKJK0,136
32
17
  clarifai/client/auth/helper.py,sha256=hqwI7Zlsvivc-O9aAdtxyJT3zkpuMvbxjRaiCTsWYGk,14183
33
18
  clarifai/client/auth/register.py,sha256=2CMdBsoVLoTfjyksE6j7BM2tiEc73WKYvxnwDDgNn1k,536
34
19
  clarifai/client/auth/stub.py,sha256=xy4-fV0W8keCgXld4eOVzFQEIKxOktNwtL5bLztReug,4940
35
- clarifai/client/auth/__pycache__/__init__.cpython-310.pyc,sha256=8VRczIoY5s9l4qFKMQdjwUu1Ta5-3Y-U4d2prDKeSAI,313
36
- clarifai/client/auth/__pycache__/helper.cpython-310.pyc,sha256=wt2pThsM-x1I8xGFfWrBEYiY_SThkVj2vNDAtBIUie8,12471
37
- clarifai/client/auth/__pycache__/register.cpython-310.pyc,sha256=BvaXSzGjt8k-B31xRkW5iT293b9w-Co8tMAesr_yk1I,902
38
- clarifai/client/auth/__pycache__/stub.cpython-310.pyc,sha256=FcfGDRr5nK27rlxRP7idLnAdoHJqmxfnMGbOUN1sbpM,4766
39
- clarifai/constants/dataset.py,sha256=OXYirr0iaoN_47V6wxO0H6ptV81y8zNGapPBz9qqD8o,516
20
+ clarifai/constants/dataset.py,sha256=Puz6_FfTm30G5FVBb1GJsobMkNtbg0Y2Soy7eyHjvtI,587
40
21
  clarifai/constants/input.py,sha256=WcHwToUVIK9ItAhDefaSohQHCLNeR55PSjZ0BFnoZ3U,28
41
22
  clarifai/constants/model.py,sha256=oTad43ncskVHfQ9vEbL2yy0Fac666dXr7QuO8zZXHAE,245
42
23
  clarifai/constants/rag.py,sha256=WcHwToUVIK9ItAhDefaSohQHCLNeR55PSjZ0BFnoZ3U,28
43
24
  clarifai/constants/search.py,sha256=yYEqTaFg-KdnpJE_Ytp-EPVHIIC395iNtZrpVlLIf4o,101
44
25
  clarifai/constants/workflow.py,sha256=cECq1xdvf44MCdtK2AbkiuuwhyL-6OWZdQfYbsLKy_o,33
45
- clarifai/constants/__pycache__/dataset.cpython-310.pyc,sha256=NjRKFwNqExEzhMQqJJoXONVTOGj51tvpHrdp9A_WO14,439
46
- clarifai/constants/__pycache__/model.cpython-310.pyc,sha256=_OXqjJ_DQ1rIx8dxtEp4ILq4mpBtNKZnH4onqrxy8_M,325
47
- clarifai/constants/__pycache__/search.cpython-310.pyc,sha256=ZEBvj6pf_qrwBLdMslSCwURyzwWOvC9MEW0XBxrYFr0,219
48
26
  clarifai/datasets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
49
- clarifai/datasets/__pycache__/__init__.cpython-310.pyc,sha256=VPPHJl6DRW-djdQ_H56tRqeGamlymZ10GIQD3Yv5OoQ,162
50
27
  clarifai/datasets/export/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
51
- clarifai/datasets/export/inputs_annotations.py,sha256=3Bv6JsPzSeGEEJlkF1KR8qDHc_QyHF0ddvHfSiB5Pjc,9479
52
- clarifai/datasets/export/__pycache__/__init__.cpython-310.pyc,sha256=hIQLtGtmTY5nSt6Gt45vRLqVx-8nYRRif-v-QWFBddI,169
53
- clarifai/datasets/export/__pycache__/inputs_annotations.cpython-310.pyc,sha256=vmC37cdc9Scj-KZ3_KInLrHhM7MZZHc-umFuPj1yeIE,9432
28
+ clarifai/datasets/export/inputs_annotations.py,sha256=Mzo7UMoxuOvgLSmkU9e6WvSCGLPIa6NXKuQHyesVLG8,9737
54
29
  clarifai/datasets/upload/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
55
30
  clarifai/datasets/upload/base.py,sha256=IP4sdBRfThk2l0W1rDWciFrAJnKwVsM-gu4zEslJ2_E,2198
56
31
  clarifai/datasets/upload/features.py,sha256=oq0PGpAw8LEafiSkdMMl0yn-NJeZ7K_CKzpJ71b0H40,1731
57
32
  clarifai/datasets/upload/image.py,sha256=pNFTThEVGIK9RNIsUuSSQE59LfO-tKkhsXSR7CONAEg,8293
58
33
  clarifai/datasets/upload/text.py,sha256=KM_LupAqYYxmbl1Q5nTsr3eV1RAYDfr-2xzf4cP6rfY,2083
59
34
  clarifai/datasets/upload/utils.py,sha256=h7mtN9FZXhQQbf47EXczgb-NTY2uOE9AJlE9u4-hDwI,9627
60
- clarifai/datasets/upload/__pycache__/__init__.cpython-310.pyc,sha256=wf7NKVMa3qnOeCv0GD3Rc-CMdcT8N_Q7CDAHGjv-RfA,169
61
- clarifai/datasets/upload/__pycache__/base.cpython-310.pyc,sha256=tQo8Pow5aM0IqwMi5fAF-PlcAzHxLDGxkI69G9cEC78,3223
62
- clarifai/datasets/upload/__pycache__/features.cpython-310.pyc,sha256=cThlZcb33iB4WsR5-EftbJGRkCTn6otT0wbo8NPBebQ,1882
63
- clarifai/datasets/upload/__pycache__/image.cpython-310.pyc,sha256=OHqQFzukKVyp4CfGIYNPa-8aOYbOySBM72AbiAjgiYg,5830
64
- clarifai/datasets/upload/__pycache__/text.cpython-310.pyc,sha256=zjc7j-zzutsjP3kuxR7KwYwMMNrdSPtDWiORFuzO72I,2531
65
- clarifai/datasets/upload/__pycache__/utils.cpython-310.pyc,sha256=Zhe0S0lCJByg0W5KiDtDClL1kS_pvfxV93KdwK7YYhE,7477
66
35
  clarifai/datasets/upload/loaders/README.md,sha256=aNRutSCTzLp2ruIZx74ZkN5AxpzwKOxMa7OzabnKpwg,2980
67
36
  clarifai/datasets/upload/loaders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
68
37
  clarifai/datasets/upload/loaders/coco_captions.py,sha256=YfuNXplbdoH8N9ph7RyN9MfJTtOcJBG4ie1ow6-mELA,1516
@@ -71,13 +40,10 @@ clarifai/datasets/upload/loaders/imagenet_classification.py,sha256=LuylazxpI5V8f
71
40
  clarifai/datasets/upload/loaders/xview_detection.py,sha256=hk8cZdYZimm4KOaZvBjYcC6ikURZMn51xmn7pXZT3HE,6052
72
41
  clarifai/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
73
42
  clarifai/models/api.py,sha256=d3FQQlG0mNDLrfEvchqaVcq4Tgb_TqryNnJtwp3c7sE,10961
74
- clarifai/models/__pycache__/__init__.cpython-310.pyc,sha256=zKs_C3koRzmCtCEoPKOXKb8mnTTbTghIzRhHUnb_6oM,163
75
43
  clarifai/models/model_serving/README.md,sha256=zXnKybVoIF_LYHKKY2vijTCaGcb2-GJ5kef2uB1WFrs,4241
76
44
  clarifai/models/model_serving/__init__.py,sha256=78fiK9LvdGvpMxICmZWqSIyS6BFATjW2s5R6_GgtbPA,645
77
45
  clarifai/models/model_serving/constants.py,sha256=8eVT6iYGRF4s4SKoHFUmDwCX6C2EiEiCOP1MIgtcc6A,692
78
46
  clarifai/models/model_serving/utils.py,sha256=vdFLyxvcDJhgFdw2jaOsVNVmLlw87ymGTgQachVleOU,1089
79
- clarifai/models/model_serving/__pycache__/__init__.cpython-310.pyc,sha256=JOslhl0r5h55n7-EwdTafVn6gXreFlw9MIlXXNGnU98,228
80
- clarifai/models/model_serving/__pycache__/constants.cpython-310.pyc,sha256=Ya-U8xw13myvfJNO6LpnnnI2fN6vsqIUZQSb1u9_r-g,800
81
47
  clarifai/models/model_serving/cli/__init__.py,sha256=Nls28G-fedNw2oQZIkPQSN__TgjJXbG9RDzzuHIM0VI,575
82
48
  clarifai/models/model_serving/cli/_utils.py,sha256=CZTKKiaoO1Mg5MKQS2Qhgy4JRjnkEHqy8zY5U6b6C0w,1734
83
49
  clarifai/models/model_serving/cli/base.py,sha256=k4ARNU1koNzGAi9ach6Vpk7hpISZySiYHyKjkBLuHLg,283
@@ -87,11 +53,6 @@ clarifai/models/model_serving/cli/create.py,sha256=wtKcVi8XSPN-Fx0RrSUxEwH1hm5Tb
87
53
  clarifai/models/model_serving/cli/example_cli.py,sha256=tCm0J4EI0kuuSRhEiPTuraSA-bUYwtEFEHcL1eOXzRI,1039
88
54
  clarifai/models/model_serving/cli/login.py,sha256=IQHL3SdERThnCTGPp5HnI41B0-BTzzGb2wx0P8-KIIA,771
89
55
  clarifai/models/model_serving/cli/upload.py,sha256=kOz8OOEobo6sLUkS1xg0672PTmMkx0aWxjKMhSRlMwM,7013
90
- clarifai/models/model_serving/cli/__pycache__/__init__.cpython-310.pyc,sha256=bFk2As7XN-ecoMsLeQzUlATvyotjvAxWtpVWet4wGQ8,181
91
- clarifai/models/model_serving/cli/__pycache__/_utils.cpython-310.pyc,sha256=iuD3tC05CAMyKFyTzu4PFqHxMF5fnqOgiY1geEgl9zU,2053
92
- clarifai/models/model_serving/cli/__pycache__/base.cpython-310.pyc,sha256=TWpOWSuLtXTsT840-kQ2dRY0EUnEuQgiOEUlelg9czY,764
93
- clarifai/models/model_serving/cli/__pycache__/build.cpython-310.pyc,sha256=K__uYmRt8Q_2jyzNbT5X03W4WvPK2C2c4-uR6hP7w7Y,2656
94
- clarifai/models/model_serving/cli/__pycache__/create.cpython-310.pyc,sha256=RdiRP_HxA7YUwWlTOcCUVs1FFA6sbJUvatt9bBfnvpE,5247
95
56
  clarifai/models/model_serving/docs/cli.md,sha256=fLgyY8sYMPjYQW_q8Q9yJYB_ryDVGbzj2VouJgvkEFw,4564
96
57
  clarifai/models/model_serving/docs/concepts.md,sha256=ppQADibKQInf9JpfcH7wIpcMndTZ3618or5yzMhGNOE,9376
97
58
  clarifai/models/model_serving/docs/dependencies.md,sha256=apwg_IxDBzovtQYXRpWMU9pUqdf0VaS10yMVOYYXhoc,728
@@ -102,11 +63,6 @@ clarifai/models/model_serving/model_config/base.py,sha256=Jow6cFvREtWRaaXw1hobWJ
102
63
  clarifai/models/model_serving/model_config/config.py,sha256=EWkPcui370QEYJAjlzuLupLlaZF2BgFbK0Jhx_JDHnk,10188
103
64
  clarifai/models/model_serving/model_config/inference_parameter.py,sha256=fDPRkwsntaGZWQWOiCW8x0tcyHPeSCYZwBZoZb2oBzw,3924
104
65
  clarifai/models/model_serving/model_config/output.py,sha256=uyXY-B9mmoe8lizTpYEBRYI1KDNQh3ihEiEB4Ne65uc,4634
105
- clarifai/models/model_serving/model_config/__pycache__/__init__.cpython-310.pyc,sha256=wzLw_0sVLs6FAcO24_xGsokEPw5fOPFCmozA7rvw_P8,329
106
- clarifai/models/model_serving/model_config/__pycache__/base.cpython-310.pyc,sha256=f7icV5QYjQqpxh4LDRKBHC2RvcHOVMwDjFJFYsJDxtw,13642
107
- clarifai/models/model_serving/model_config/__pycache__/config.cpython-310.pyc,sha256=HuuEzMeC6BGdVqETSkuRsMhzhC3GhZQsJv0g0ESo-pA,10037
108
- clarifai/models/model_serving/model_config/__pycache__/inference_parameter.cpython-310.pyc,sha256=4wwdShF1N4DAG67KQCtMraf8fq6R6r5GB2K4QY46BBU,5471
109
- clarifai/models/model_serving/model_config/__pycache__/output.cpython-310.pyc,sha256=ecvVqE04IoMcfcGAW7YcbMEnMY3MZci2pYyKSjkSuuk,4220
110
66
  clarifai/models/model_serving/model_config/model_types_config/multimodal-embedder.yaml,sha256=4wFQ2R8PiJrXR_8AEgUDD-22gY9sK93y9r68mSOOVnw,541
111
67
  clarifai/models/model_serving/model_config/model_types_config/text-classifier.yaml,sha256=0hicyQM-R2Za62RaBexdNCkHBDdacwMRVAL8Yk_sVzs,421
112
68
  clarifai/models/model_serving/model_config/model_types_config/text-embedder.yaml,sha256=MEnVsO3-SAOFSW7-b0BOSxgUNxdhXfmE98hXstBt104,395
@@ -120,20 +76,13 @@ clarifai/models/model_serving/model_config/triton/__init__.py,sha256=uJUjpRauhVp
120
76
  clarifai/models/model_serving/model_config/triton/serializer.py,sha256=eYwXfaJkeXMaiQq_EDG4vWOCc1CKfnC_U6dSp2Urak0,4278
121
77
  clarifai/models/model_serving/model_config/triton/triton_config.py,sha256=mDZafUByvEgM1vd0QZL8nM-cOCqeR-06iOC2T6x8hr4,4696
122
78
  clarifai/models/model_serving/model_config/triton/wrappers.py,sha256=-O8t2AEJXvqJlUNtKtr8CUlxLjheV2GfBtM0sB_B1v0,8660
123
- clarifai/models/model_serving/model_config/triton/__pycache__/__init__.cpython-310.pyc,sha256=Zr8o6FF7Y829ixgFu5qbUzh6jeWHMEYNrgfNr_cWpcc,272
124
- clarifai/models/model_serving/model_config/triton/__pycache__/serializer.cpython-310.pyc,sha256=AXK8yEiV4y5Q7_DeDOyP2qW1nEcKewE2yJZEwD-v0-0,3828
125
- clarifai/models/model_serving/model_config/triton/__pycache__/triton_config.cpython-310.pyc,sha256=UrzrpY5bNN-Liwe-DCFIDpXfjYtDMG7pHD8-56ZYKMo,5421
126
- clarifai/models/model_serving/model_config/triton/__pycache__/wrappers.cpython-310.pyc,sha256=MX_jho-gw5N5J4RpHgposmAnWC19dadWAtKt30f2fBE,6397
127
79
  clarifai/models/model_serving/repo_build/__init__.py,sha256=jFb0RNG4Jh63TH35_Urv0EyNXVMW8FEC2NVHXhlbvqg,673
128
80
  clarifai/models/model_serving/repo_build/build.py,sha256=IlJTjt5YI1alAGv1Fw3kPZeh3yqi45R20rKbWN9vV1s,7195
129
- clarifai/models/model_serving/repo_build/__pycache__/__init__.cpython-310.pyc,sha256=LT2Fak0rswiTo8v16kOMlvechjOUdu8Z7HSmMJMXSoo,290
130
- clarifai/models/model_serving/repo_build/__pycache__/build.cpython-310.pyc,sha256=YaQ0co8m0coHvSGn_At3hEnEJ-w5J1x1n1ccYJaqgYM,5806
131
81
  clarifai/models/model_serving/repo_build/static_files/_requirements.txt,sha256=lIXMfxC4BP6QA5hraObPOwUS3PK9F2mA0Gf8KvlijQE,34
132
82
  clarifai/models/model_serving/repo_build/static_files/base_test.py,sha256=wuwoXk37bgDaLmE-h4KfMoz0Qvr6B-InLzSORYzwF3A,6780
133
83
  clarifai/models/model_serving/repo_build/static_files/inference.py,sha256=TejkXZw43mcZD-M9TkfuqMuABz_cliJgf53_Teodtf0,721
134
84
  clarifai/models/model_serving/repo_build/static_files/sample_clarifai_config.yaml,sha256=VOFSSb7D_CgRRcqi-plaCH-6hoFO8NAGDNXVSOJGylo,678
135
85
  clarifai/models/model_serving/repo_build/static_files/test.py,sha256=GunBqWgTyo0aF5W9ckKz55tGS-wkL9S9TRfytIjB7Eo,1505
136
- clarifai/models/model_serving/repo_build/static_files/__pycache__/base_test.cpython-310-pytest-7.2.0.pyc,sha256=n2PEkZdqH-8ZFQiPn1BLlgy4gB6W0hc5pxUyo0pAVbU,11523
137
86
  clarifai/models/model_serving/repo_build/static_files/triton/model.py,sha256=l9lkwyeXw9H_K4Om9dGcuylnj4hAlzohspUZkSnQ7Qg,2429
138
87
  clarifai/modules/README.md,sha256=mx8pVx6cPp-pP4LcFPT_nX3ngGmhygVK0WiXeD3cbIo,367
139
88
  clarifai/modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -141,33 +90,15 @@ clarifai/modules/css.py,sha256=kadCEunmyh5h2yf0-4aysE3ZcZ6qaQcxuAgDXS96yF8,2020
141
90
  clarifai/modules/pages.py,sha256=iOoM3RNRMgXlV0qBqcdQofxoXo2RuRQh0h9c9BIS0-I,1383
142
91
  clarifai/modules/style.css,sha256=j7FNPZVhLPj35vvBksAJ90RuX5sLuqzDR5iM2WIEhiA,6073
143
92
  clarifai/rag/__init__.py,sha256=wu3PzAzo7uqgrEzuaC9lY_3gj1HFiR3GU3elZIKTT5g,40
144
- clarifai/rag/rag.py,sha256=ySKI4ChHTJSj3nOL9gfOuZ-0hZTfHFZXVJaO6pX0KkM,12356
93
+ clarifai/rag/rag.py,sha256=0udYyWVzBML-5-E05QuxBz7rNLxu7aMlist5uP7zPIY,12638
145
94
  clarifai/rag/utils.py,sha256=yr1jAcbpws4vFGBqlAwPPE7v1DRba48g8gixLFw8OhQ,4070
146
- clarifai/rag/__pycache__/__init__.cpython-310.pyc,sha256=xAV8OBmLU6qidHU5fr1p2OvQc5N4sy6X1W6ToAUX3mw,213
147
- clarifai/rag/__pycache__/rag.cpython-310.pyc,sha256=a46wbk0s9On4CHKUso-wBCiscINER6X4Anka1yVW04w,9519
148
- clarifai/rag/__pycache__/utils.cpython-310.pyc,sha256=IDUXR7Iv4KfHSY3sbx_bgPdJQn2ozyRCuz01EUTmCUw,3694
149
- clarifai/runners/deepgram_live_transcribe.py,sha256=x2RuZad0eGQXPRwnSYjJ5Qcvyw7KQl1iUXXmvd17Gpo,2556
150
- clarifai/runners/deepgram_live_transcribe.py~,sha256=cvFOlyJh8POJubCWbZN4ROuQlWsQBzWKm89a6xLvShg,2559
151
- clarifai/runners/deepgram_runner.py,sha256=E34nvU1t1W0UV6mC0iHwOHG15G4xk3vKUwwvZzFu7yE,3998
152
- clarifai/runners/deepgram_runner.py~,sha256=M_4aaZfrPt61eS-O0sP1TyrM8BzDcsvchuqAI0c4HXo,3924
153
- clarifai/runners/example_llama2.py~,sha256=-pNAaiLjli-SwJLpSur0UfBLLtnIqvE-0JkTmxLhTgo,2471
154
- clarifai/runners/matt_example.py,sha256=HYF6nhvEFt06Psnz6-hIEkwEetbsd_08RByprDZ66AI,3210
155
- clarifai/runners/matt_example.py~,sha256=-FJ_vpLYAFGaqfszwNJ0t1lDYR0rMNvOEEOTnbh6Bi8,3158
156
- clarifai/runners/matt_llm_example.py,sha256=aByRQReB2nTYE45BQTws1hFSxSsjSWAWetNbFgiyYQg,4550
157
- clarifai/runners/matt_llm_example.py~,sha256=yXX21TqfNmwu9a1B6YZbHzZvVetn8qT-B4zDXSC0hHQ,4518
158
95
  clarifai/schema/search.py,sha256=JjTi8ammJgZZ2OGl4K6tIA4zEJ1Fr2ASZARXavI1j5c,2448
159
- clarifai/schema/__pycache__/search.cpython-310.pyc,sha256=aYuMHmn0ovwmeOhTDj7QAURrQAjlyLm1CwKaz6xktZU,2484
160
96
  clarifai/urls/helper.py,sha256=tjoMGGHuWX68DUB0pk4MEjrmFsClUAQj2jmVEM_Sy78,4751
161
- clarifai/urls/__pycache__/helper.cpython-310.pyc,sha256=OfmR5CybCvhKwvq5XF6YYtYQ82m9rX4yhvRv7YMo1Qc,4426
162
97
  clarifai/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
163
- clarifai/utils/constants.py,sha256=XAIMF2B1O3uBkdhcBJr-JoRPBbS0FWeD4_CBmCTGeH4,96
164
- clarifai/utils/logging.py,sha256=xJTteoUodQ7RfsbO676QgidKa5EVPbdUu89Xlwwso2s,4533
98
+ clarifai/utils/constants.py,sha256=MG_iHnSwNEyUZOpvsrTicNwaT4CIjmlK_Ixk_qqEX8g,142
99
+ clarifai/utils/logging.py,sha256=sR_pRfSHZvHb08KcduAGz9oFrzioWqqCDZ3mHB8rpUY,4601
165
100
  clarifai/utils/misc.py,sha256=GznzquXXFt8J9qzMWtTJPFWCSc5QTs_ZBldW1mXCZzE,1285
166
101
  clarifai/utils/model_train.py,sha256=Mndqy5GNu7kjQHjDyNVyamL0hQFLGSHcWhOuPyOvr1w,8005
167
- clarifai/utils/__pycache__/__init__.cpython-310.pyc,sha256=Q8oK40IQ32SEvd407TGiOQBVbhwcw7_LPevp0mEUr9Y,159
168
- clarifai/utils/__pycache__/logging.cpython-310.pyc,sha256=IK3h-kOoiCWg467LkZFnAjIpndUKOqW8j-KzFhx_icY,3183
169
- clarifai/utils/__pycache__/misc.cpython-310.pyc,sha256=ge_ZlPTZam5eHsAJbtl29Uj--ImIOaKZvn7Eysqyo-E,2320
170
- clarifai/utils/__pycache__/model_train.cpython-310.pyc,sha256=rNxbVNjSRTTnz14M5Rz3xbDQz4xZ_5UEH7L_aTdc1AI,5022
171
102
  clarifai/utils/evaluation/__init__.py,sha256=PYkurUrXrGevByj7RFb6CoU1iC7fllyQSfnnlo9WnY8,69
172
103
  clarifai/utils/evaluation/helpers.py,sha256=d_dcASRI_lhsHIRukAF1S-w7XazLpK9y6E_ug3l50t4,18440
173
104
  clarifai/utils/evaluation/main.py,sha256=0SbTN8cUDjfd4vHUSIG0qVVmDDlJE_5il4vcZGi6a5g,15781
@@ -176,13 +107,9 @@ clarifai/workflows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuF
176
107
  clarifai/workflows/export.py,sha256=vICRhIreqDSShxLKjHNM2JwzKsf1B4fdXB0ciMcA70k,1945
177
108
  clarifai/workflows/utils.py,sha256=nGeB_yjVgUO9kOeKTg4OBBaBz-AwXI3m-huSVj-9W18,1924
178
109
  clarifai/workflows/validate.py,sha256=yJq03MaJqi5AK3alKGJJBR89xmmjAQ31sVufJUiOqY8,2556
179
- clarifai/workflows/__pycache__/__init__.cpython-310.pyc,sha256=oRKg6B7Z-wWQy0EW2Qz1Eyio17vde-lpn_K4oUMMbfQ,163
180
- clarifai/workflows/__pycache__/export.cpython-310.pyc,sha256=cNmGLnww7xVpm4htd1vRhQJoEZ1dhpN1oD8iLLAtVzM,2418
181
- clarifai/workflows/__pycache__/utils.cpython-310.pyc,sha256=rm2kWk4a3GOKWoerXpEAEeRvGhEe7wPd0ZZ6jHtEGqY,1925
182
- clarifai/workflows/__pycache__/validate.cpython-310.pyc,sha256=QA1i6YdDpY824cqtQvkEaFPpaCa2iqfOwFouqwZfAKY,2139
183
- clarifai-10.5.3.dist-info/LICENSE,sha256=mUqF_d12-qE2n41g7C5_sq-BMLOcj6CNN-jevr15YHU,555
184
- clarifai-10.5.3.dist-info/METADATA,sha256=n7kxLVu1V67LAno5-NOGgVrHRNisIEoaX_5tovcbUyI,19372
185
- clarifai-10.5.3.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
186
- clarifai-10.5.3.dist-info/entry_points.txt,sha256=qZOr_MIPG0dBBE1zringDJS_wXNGTAA_SQ-zcbmDHOw,82
187
- clarifai-10.5.3.dist-info/top_level.txt,sha256=wUMdCQGjkxaynZ6nZ9FAnvBUCgp5RJUVFSy2j-KYo0s,9
188
- clarifai-10.5.3.dist-info/RECORD,,
110
+ clarifai-10.5.4.dist-info/LICENSE,sha256=mUqF_d12-qE2n41g7C5_sq-BMLOcj6CNN-jevr15YHU,555
111
+ clarifai-10.5.4.dist-info/METADATA,sha256=y6nmwxvlO3GuzTeIyHPpEPagkFL_lOr_v_ztEIwc1Pg,19372
112
+ clarifai-10.5.4.dist-info/WHEEL,sha256=Z4pYXqR_rTB7OWNDYFOm1qRk0RX6GFP2o8LgvP453Hk,91
113
+ clarifai-10.5.4.dist-info/entry_points.txt,sha256=qZOr_MIPG0dBBE1zringDJS_wXNGTAA_SQ-zcbmDHOw,82
114
+ clarifai-10.5.4.dist-info/top_level.txt,sha256=wUMdCQGjkxaynZ6nZ9FAnvBUCgp5RJUVFSy2j-KYo0s,9
115
+ clarifai-10.5.4.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.42.0)
2
+ Generator: setuptools (70.3.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
Binary file