arize 8.0.0a22__py3-none-any.whl → 8.0.0b0__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 (171) hide show
  1. arize/__init__.py +28 -19
  2. arize/_exporter/client.py +56 -37
  3. arize/_exporter/parsers/tracing_data_parser.py +41 -30
  4. arize/_exporter/validation.py +3 -3
  5. arize/_flight/client.py +207 -76
  6. arize/_generated/api_client/__init__.py +30 -6
  7. arize/_generated/api_client/api/__init__.py +1 -0
  8. arize/_generated/api_client/api/datasets_api.py +864 -190
  9. arize/_generated/api_client/api/experiments_api.py +167 -131
  10. arize/_generated/api_client/api/projects_api.py +1197 -0
  11. arize/_generated/api_client/api_client.py +2 -2
  12. arize/_generated/api_client/configuration.py +42 -34
  13. arize/_generated/api_client/exceptions.py +2 -2
  14. arize/_generated/api_client/models/__init__.py +15 -4
  15. arize/_generated/api_client/models/dataset.py +10 -10
  16. arize/_generated/api_client/models/dataset_example.py +111 -0
  17. arize/_generated/api_client/models/dataset_example_update.py +100 -0
  18. arize/_generated/api_client/models/dataset_version.py +13 -13
  19. arize/_generated/api_client/models/datasets_create_request.py +16 -8
  20. arize/_generated/api_client/models/datasets_examples_insert_request.py +100 -0
  21. arize/_generated/api_client/models/datasets_examples_list200_response.py +106 -0
  22. arize/_generated/api_client/models/datasets_examples_update_request.py +102 -0
  23. arize/_generated/api_client/models/datasets_list200_response.py +10 -4
  24. arize/_generated/api_client/models/experiment.py +14 -16
  25. arize/_generated/api_client/models/experiment_run.py +108 -0
  26. arize/_generated/api_client/models/experiment_run_create.py +102 -0
  27. arize/_generated/api_client/models/experiments_create_request.py +16 -10
  28. arize/_generated/api_client/models/experiments_list200_response.py +10 -4
  29. arize/_generated/api_client/models/experiments_runs_list200_response.py +19 -5
  30. arize/_generated/api_client/models/{error.py → pagination_metadata.py} +13 -11
  31. arize/_generated/api_client/models/primitive_value.py +172 -0
  32. arize/_generated/api_client/models/problem.py +100 -0
  33. arize/_generated/api_client/models/project.py +99 -0
  34. arize/_generated/api_client/models/{datasets_list_examples200_response.py → projects_create_request.py} +13 -11
  35. arize/_generated/api_client/models/projects_list200_response.py +106 -0
  36. arize/_generated/api_client/rest.py +2 -2
  37. arize/_generated/api_client/test/test_dataset.py +4 -2
  38. arize/_generated/api_client/test/test_dataset_example.py +56 -0
  39. arize/_generated/api_client/test/test_dataset_example_update.py +52 -0
  40. arize/_generated/api_client/test/test_dataset_version.py +7 -2
  41. arize/_generated/api_client/test/test_datasets_api.py +27 -13
  42. arize/_generated/api_client/test/test_datasets_create_request.py +8 -4
  43. arize/_generated/api_client/test/{test_datasets_list_examples200_response.py → test_datasets_examples_insert_request.py} +19 -15
  44. arize/_generated/api_client/test/test_datasets_examples_list200_response.py +66 -0
  45. arize/_generated/api_client/test/test_datasets_examples_update_request.py +61 -0
  46. arize/_generated/api_client/test/test_datasets_list200_response.py +9 -3
  47. arize/_generated/api_client/test/test_experiment.py +2 -4
  48. arize/_generated/api_client/test/test_experiment_run.py +56 -0
  49. arize/_generated/api_client/test/test_experiment_run_create.py +54 -0
  50. arize/_generated/api_client/test/test_experiments_api.py +6 -6
  51. arize/_generated/api_client/test/test_experiments_create_request.py +9 -6
  52. arize/_generated/api_client/test/test_experiments_list200_response.py +9 -5
  53. arize/_generated/api_client/test/test_experiments_runs_list200_response.py +15 -5
  54. arize/_generated/api_client/test/test_pagination_metadata.py +53 -0
  55. arize/_generated/api_client/test/{test_error.py → test_primitive_value.py} +13 -14
  56. arize/_generated/api_client/test/test_problem.py +57 -0
  57. arize/_generated/api_client/test/test_project.py +58 -0
  58. arize/_generated/api_client/test/test_projects_api.py +59 -0
  59. arize/_generated/api_client/test/test_projects_create_request.py +54 -0
  60. arize/_generated/api_client/test/test_projects_list200_response.py +70 -0
  61. arize/_generated/api_client_README.md +43 -29
  62. arize/_generated/protocol/flight/flight_pb2.py +400 -0
  63. arize/_lazy.py +27 -19
  64. arize/client.py +181 -58
  65. arize/config.py +324 -116
  66. arize/constants/__init__.py +1 -0
  67. arize/constants/config.py +11 -4
  68. arize/constants/ml.py +6 -4
  69. arize/constants/openinference.py +2 -0
  70. arize/constants/pyarrow.py +2 -0
  71. arize/constants/spans.py +3 -1
  72. arize/datasets/__init__.py +1 -0
  73. arize/datasets/client.py +304 -84
  74. arize/datasets/errors.py +32 -2
  75. arize/datasets/validation.py +18 -8
  76. arize/embeddings/__init__.py +2 -0
  77. arize/embeddings/auto_generator.py +23 -19
  78. arize/embeddings/base_generators.py +89 -36
  79. arize/embeddings/constants.py +2 -0
  80. arize/embeddings/cv_generators.py +26 -4
  81. arize/embeddings/errors.py +27 -5
  82. arize/embeddings/nlp_generators.py +43 -18
  83. arize/embeddings/tabular_generators.py +46 -31
  84. arize/embeddings/usecases.py +12 -2
  85. arize/exceptions/__init__.py +1 -0
  86. arize/exceptions/auth.py +11 -1
  87. arize/exceptions/base.py +29 -4
  88. arize/exceptions/models.py +21 -2
  89. arize/exceptions/parameters.py +31 -0
  90. arize/exceptions/spaces.py +12 -1
  91. arize/exceptions/types.py +86 -7
  92. arize/exceptions/values.py +220 -20
  93. arize/experiments/__init__.py +13 -0
  94. arize/experiments/client.py +394 -285
  95. arize/experiments/evaluators/__init__.py +1 -0
  96. arize/experiments/evaluators/base.py +74 -41
  97. arize/experiments/evaluators/exceptions.py +6 -3
  98. arize/experiments/evaluators/executors.py +121 -73
  99. arize/experiments/evaluators/rate_limiters.py +106 -57
  100. arize/experiments/evaluators/types.py +34 -7
  101. arize/experiments/evaluators/utils.py +65 -27
  102. arize/experiments/functions.py +103 -101
  103. arize/experiments/tracing.py +52 -44
  104. arize/experiments/types.py +56 -31
  105. arize/logging.py +54 -22
  106. arize/ml/__init__.py +1 -0
  107. arize/ml/batch_validation/__init__.py +1 -0
  108. arize/{models → ml}/batch_validation/errors.py +545 -67
  109. arize/{models → ml}/batch_validation/validator.py +344 -303
  110. arize/ml/bounded_executor.py +47 -0
  111. arize/{models → ml}/casting.py +118 -108
  112. arize/{models → ml}/client.py +339 -118
  113. arize/{models → ml}/proto.py +97 -42
  114. arize/{models → ml}/stream_validation.py +43 -15
  115. arize/ml/surrogate_explainer/__init__.py +1 -0
  116. arize/{models → ml}/surrogate_explainer/mimic.py +25 -10
  117. arize/{types.py → ml/types.py} +355 -354
  118. arize/pre_releases.py +44 -0
  119. arize/projects/__init__.py +1 -0
  120. arize/projects/client.py +134 -0
  121. arize/regions.py +40 -0
  122. arize/spans/__init__.py +1 -0
  123. arize/spans/client.py +204 -175
  124. arize/spans/columns.py +13 -0
  125. arize/spans/conversion.py +60 -37
  126. arize/spans/validation/__init__.py +1 -0
  127. arize/spans/validation/annotations/__init__.py +1 -0
  128. arize/spans/validation/annotations/annotations_validation.py +6 -4
  129. arize/spans/validation/annotations/dataframe_form_validation.py +13 -11
  130. arize/spans/validation/annotations/value_validation.py +35 -11
  131. arize/spans/validation/common/__init__.py +1 -0
  132. arize/spans/validation/common/argument_validation.py +33 -8
  133. arize/spans/validation/common/dataframe_form_validation.py +35 -9
  134. arize/spans/validation/common/errors.py +211 -11
  135. arize/spans/validation/common/value_validation.py +81 -14
  136. arize/spans/validation/evals/__init__.py +1 -0
  137. arize/spans/validation/evals/dataframe_form_validation.py +28 -8
  138. arize/spans/validation/evals/evals_validation.py +34 -4
  139. arize/spans/validation/evals/value_validation.py +26 -3
  140. arize/spans/validation/metadata/__init__.py +1 -1
  141. arize/spans/validation/metadata/argument_validation.py +14 -5
  142. arize/spans/validation/metadata/dataframe_form_validation.py +26 -10
  143. arize/spans/validation/metadata/value_validation.py +24 -10
  144. arize/spans/validation/spans/__init__.py +1 -0
  145. arize/spans/validation/spans/dataframe_form_validation.py +35 -14
  146. arize/spans/validation/spans/spans_validation.py +35 -4
  147. arize/spans/validation/spans/value_validation.py +78 -8
  148. arize/utils/__init__.py +1 -0
  149. arize/utils/arrow.py +31 -15
  150. arize/utils/cache.py +34 -6
  151. arize/utils/dataframe.py +20 -3
  152. arize/utils/online_tasks/__init__.py +2 -0
  153. arize/utils/online_tasks/dataframe_preprocessor.py +58 -47
  154. arize/utils/openinference_conversion.py +44 -5
  155. arize/utils/proto.py +10 -0
  156. arize/utils/size.py +5 -3
  157. arize/utils/types.py +105 -0
  158. arize/version.py +3 -1
  159. {arize-8.0.0a22.dist-info → arize-8.0.0b0.dist-info}/METADATA +13 -6
  160. arize-8.0.0b0.dist-info/RECORD +175 -0
  161. {arize-8.0.0a22.dist-info → arize-8.0.0b0.dist-info}/WHEEL +1 -1
  162. arize-8.0.0b0.dist-info/licenses/LICENSE +176 -0
  163. arize-8.0.0b0.dist-info/licenses/NOTICE +13 -0
  164. arize/_generated/protocol/flight/export_pb2.py +0 -61
  165. arize/_generated/protocol/flight/ingest_pb2.py +0 -365
  166. arize/models/__init__.py +0 -0
  167. arize/models/batch_validation/__init__.py +0 -0
  168. arize/models/bounded_executor.py +0 -34
  169. arize/models/surrogate_explainer/__init__.py +0 -0
  170. arize-8.0.0a22.dist-info/RECORD +0 -146
  171. arize-8.0.0a22.dist-info/licenses/LICENSE.md +0 -12
arize/utils/proto.py CHANGED
@@ -1,3 +1,5 @@
1
+ """Protocol buffer schema utilities for tracing data."""
2
+
1
3
  # type: ignore[pb2]
2
4
  from arize._generated.protocol.rec import public_pb2 as pb2
3
5
 
@@ -5,6 +7,14 @@ from arize._generated.protocol.rec import public_pb2 as pb2
5
7
  def get_pb_schema_tracing(
6
8
  project_name: str,
7
9
  ) -> pb2.Schema:
10
+ """Create a protobuf schema for LLM tracing data.
11
+
12
+ Args:
13
+ project_name: The name of the project/model.
14
+
15
+ Returns:
16
+ A configured pb2.Schema object for tracing environment.
17
+ """
8
18
  s = pb2.Schema()
9
19
  s.constants.model_id = project_name
10
20
  s.constants.environment = pb2.Schema.Environment.TRACING
arize/utils/size.py CHANGED
@@ -1,13 +1,15 @@
1
+ """Size calculation utilities for payloads and data structures."""
2
+
1
3
  import sys
2
- from typing import Any, Dict, List
4
+ from typing import Any
3
5
 
4
6
  import pandas as pd
5
7
 
6
8
 
7
- def get_payload_size_mb(payload: List[Dict[str, Any]] | pd.DataFrame) -> float:
9
+ def get_payload_size_mb(payload: list[dict[str, Any]] | pd.DataFrame) -> float:
8
10
  """Return approximate size of payload in MB."""
9
11
  if isinstance(payload, pd.DataFrame):
10
- # memory_usage(deep=True) sums all columns memory footprint
12
+ # memory_usage(deep=True) sums all columns' memory footprint
11
13
  size_bytes = payload.memory_usage(deep=True).sum()
12
14
  elif isinstance(payload, list):
13
15
  # sys.getsizeof() gives shallow size; sum all element sizes for rough total
arize/utils/types.py ADDED
@@ -0,0 +1,105 @@
1
+ """Common type definitions and data models used across the Arize SDK."""
2
+
3
+ import json
4
+ from collections.abc import Iterable, Sequence
5
+ from typing import (
6
+ TypeVar,
7
+ )
8
+
9
+ import numpy as np
10
+
11
+
12
+ def is_json_str(s: str) -> bool:
13
+ """Check if a string is valid JSON.
14
+
15
+ Args:
16
+ s: The string to validate.
17
+
18
+ Returns:
19
+ True if the string is valid JSON, False otherwise.
20
+ """
21
+ try:
22
+ json.loads(s)
23
+ except ValueError:
24
+ return False
25
+ except TypeError:
26
+ return False
27
+ return True
28
+
29
+
30
+ T = TypeVar("T", bound=type)
31
+
32
+
33
+ def is_array_of(arr: Sequence[object], tp: T) -> bool:
34
+ """Check if a value is a numpy array with all elements of a specific type.
35
+
36
+ Args:
37
+ arr: The sequence to check.
38
+ tp: The expected type for all elements.
39
+
40
+ Returns:
41
+ True if arr is a numpy array and all elements are of type tp.
42
+ """
43
+ return isinstance(arr, np.ndarray) and all(isinstance(x, tp) for x in arr)
44
+
45
+
46
+ def is_list_of(lst: Sequence[object], tp: T) -> bool:
47
+ """Check if a value is a list with all elements of a specific type.
48
+
49
+ Args:
50
+ lst: The sequence to check.
51
+ tp: The expected type for all elements.
52
+
53
+ Returns:
54
+ True if lst is a list and all elements are of type tp.
55
+ """
56
+ return isinstance(lst, list) and all(isinstance(x, tp) for x in lst)
57
+
58
+
59
+ def is_iterable_of(lst: Sequence[object], tp: T) -> bool:
60
+ """Check if a value is an iterable with all elements of a specific type.
61
+
62
+ Args:
63
+ lst: The sequence to check.
64
+ tp: The expected type for all elements.
65
+
66
+ Returns:
67
+ True if lst is an iterable and all elements are of type tp.
68
+ """
69
+ return isinstance(lst, Iterable) and all(isinstance(x, tp) for x in lst)
70
+
71
+
72
+ def is_dict_of(
73
+ d: dict[object, object],
74
+ key_allowed_types: T,
75
+ value_allowed_types: T = (),
76
+ value_list_allowed_types: T = (),
77
+ ) -> bool:
78
+ """Method to check types are valid for dictionary.
79
+
80
+ Args:
81
+ d: Dictionary itself.
82
+ key_allowed_types: All allowed types for keys of dictionary.
83
+ value_allowed_types: All allowed types for values of dictionary.
84
+ value_list_allowed_types: If value is a list, these are the allowed
85
+ types for value list.
86
+
87
+ Returns:
88
+ True if the data types of dictionary match the types specified by the
89
+ arguments, false otherwise.
90
+ """
91
+ if value_list_allowed_types and not isinstance(
92
+ value_list_allowed_types, tuple
93
+ ):
94
+ value_list_allowed_types = (value_list_allowed_types,)
95
+
96
+ return (
97
+ isinstance(d, dict)
98
+ and all(isinstance(k, key_allowed_types) for k in d)
99
+ and all(
100
+ isinstance(v, value_allowed_types)
101
+ or any(is_list_of(v, t) for t in value_list_allowed_types)
102
+ for v in d.values()
103
+ if value_allowed_types or value_list_allowed_types
104
+ )
105
+ )
arize/version.py CHANGED
@@ -1 +1,3 @@
1
- __version__ = "8.0.0a22"
1
+ """Version information for the Arize SDK."""
2
+
3
+ __version__ = "8.0.0b0"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: arize
3
- Version: 8.0.0a22
3
+ Version: 8.0.0b0
4
4
  Summary: A helper library to interact with Arize AI APIs
5
5
  Project-URL: Homepage, https://arize.com
6
6
  Project-URL: Documentation, https://docs.arize.com/arize
@@ -9,8 +9,9 @@ Project-URL: Source, https://github.com/Arize-ai/client_python
9
9
  Project-URL: Changelog, https://github.com/Arize-ai/client_python/blob/main/CHANGELOG.md
10
10
  Author-email: Arize AI <support@arize.com>
11
11
  Maintainer-email: Arize AI <support@arize.com>
12
- License: BSD
13
- License-File: LICENSE.md
12
+ License: Apache-2.0
13
+ License-File: LICENSE
14
+ License-File: NOTICE
14
15
  Keywords: Arize,Evaluations,Explainability,LLM,Monitoring,Observability,Tracing
15
16
  Classifier: Development Status :: 3 - Alpha
16
17
  Classifier: Intended Audience :: Developers
@@ -36,6 +37,12 @@ Requires-Dist: torch<3,>=1.13; extra == 'auto-embeddings'
36
37
  Requires-Dist: transformers<5,>=4.25; extra == 'auto-embeddings'
37
38
  Provides-Extra: datasets-experiments
38
39
  Requires-Dist: numpy>=2.0.0; extra == 'datasets-experiments'
40
+ Requires-Dist: openinference-semantic-conventions<1,>=0.1.21; extra == 'datasets-experiments'
41
+ Requires-Dist: opentelemetry-api>=1.38.0; extra == 'datasets-experiments'
42
+ Requires-Dist: opentelemetry-exporter-otlp-proto-common>=1.38.0; extra == 'datasets-experiments'
43
+ Requires-Dist: opentelemetry-exporter-otlp-proto-grpc>=1.38.0; extra == 'datasets-experiments'
44
+ Requires-Dist: opentelemetry-proto>=1.38.0; extra == 'datasets-experiments'
45
+ Requires-Dist: opentelemetry-sdk>=1.38.0; extra == 'datasets-experiments'
39
46
  Requires-Dist: pydantic; extra == 'datasets-experiments'
40
47
  Requires-Dist: wrapt<2.0.0,>=1.0.0; extra == 'datasets-experiments'
41
48
  Provides-Extra: dev
@@ -260,7 +267,7 @@ Use `arize.models` to interact with ML models: log ML data (traininv, validation
260
267
 
261
268
  ```python
262
269
  from arize import ArizeClient
263
- from arize.types import ModelTypes, Environments
270
+ from arize.ml.types import ModelTypes, Environments
264
271
 
265
272
  client = ArizeClient(api_key=API_KEY)
266
273
  SPACE_ID = "<your-space-id>"
@@ -285,14 +292,14 @@ response = client.models.log_stream(
285
292
 
286
293
  ```python
287
294
  from arize import ArizeClient
288
- from arize.types import ModelTypes, Environments
295
+ from arize.ml.types import ModelTypes, Environments
289
296
 
290
297
  client = ArizeClient(api_key=API_KEY)
291
298
  SPACE_ID = "<your-space-id>"
292
299
  MODEL_NAME = "<your-model-name>"
293
300
  MODEL_VERSION = "1.0"
294
301
 
295
- from arize.types import Schema, EmbeddingColumnNames, ObjectDetectionColumnNames, ModelTypes, Environments
302
+ from arize.ml.types import Schema, EmbeddingColumnNames, ObjectDetectionColumnNames, ModelTypes, Environments
296
303
 
297
304
  tags = ["drift_type"]
298
305
  embedding_feature_column_names = {
@@ -0,0 +1,175 @@
1
+ arize/__init__.py,sha256=C2NOiNcFL9TMu5NTkJwF88kL6PKAHHjBMG8HTAIQ5TU,3551
2
+ arize/_lazy.py,sha256=aLdgSGxdfdV9QiLllxlLlkN5k44pFf_7jdKRV9Z9sgo,2864
3
+ arize/client.py,sha256=RwnDTmxHzPfpzonYD8u_d4V-RFyehpbUADZV8Xpki0c,13660
4
+ arize/config.py,sha256=80iQgiaAhSqgE1Q-nKlivjQ2z3F7PifiPAsZlhQjozo,16471
5
+ arize/logging.py,sha256=CZkgdpDKXoNNJ9fQMNwbCQEe-ipUg7fQf_CE1hRN1Qc,8574
6
+ arize/pre_releases.py,sha256=QWZb5Kko-fHDKDKNk8HUwehMQuLrZPYnyD2c6_mnEqI,1216
7
+ arize/regions.py,sha256=oEKJdZbW5r8X3fL3PaDVMdk-f2MoZ8OBvUvYZLMGBpw,1039
8
+ arize/version.py,sha256=OIc4vIJor74VQDoVG5zuAmxWI0h4EEU19vIPa3y2Tjc,70
9
+ arize/_exporter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
+ arize/_exporter/client.py,sha256=DRxdREi4k0RiRI-kPvYCwX2zo6DGkdt1XMezF4ZhR08,16425
11
+ arize/_exporter/validation.py,sha256=9gX4oHrZcChMfkwoBpe3Qp4aK-txy_zZ4azrKf-bEQw,1022
12
+ arize/_exporter/parsers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
+ arize/_exporter/parsers/tracing_data_parser.py,sha256=mgpIyKhUeUeW-HMR11Kmo2HSLrUXZJLuqk27aDnytwo,5716
14
+ arize/_flight/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
+ arize/_flight/client.py,sha256=HpUu22Q2r-jnh_j0RaQtJLZnaXKGBNNjZlZ0dvX98xs,20391
16
+ arize/_flight/types.py,sha256=GB_4dQu2ElIrcDGAcqhG7oI4g-b0ZdSlbrQkf0TFzVE,194
17
+ arize/_generated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
+ arize/_generated/api_client_README.md,sha256=SfBbE1r1thnfwk3AVr6CZUP6kJ7HNy28gx1V7DjQhp8,7451
19
+ arize/_generated/api_client/__init__.py,sha256=I_KGjOG-2Z5dokY6Ln9E5fFHUIe53WUvCaUvg4DtQss,4672
20
+ arize/_generated/api_client/api_client.py,sha256=Cr9leKLpAJYQmL_U1hAPsMNFdaSO6Ti1X52jvGp2WsQ,27899
21
+ arize/_generated/api_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
22
+ arize/_generated/api_client/configuration.py,sha256=EJ6DkTKzHWqjN0BwMEHQ1D9pEDdClOsM72EcffquZ9I,19406
23
+ arize/_generated/api_client/exceptions.py,sha256=EAN7PugiYwsF3Puj8S1iWGqptP6kheYykxvZLPEk4rw,6502
24
+ arize/_generated/api_client/rest.py,sha256=OXfGpi__G1f4q3Edgbj4njQNBstouwHUIwrPLJBsVVE,9512
25
+ arize/_generated/api_client/api/__init__.py,sha256=ycVTd-FBlPyFX82wbCQiuCTbj78pZbVv17kX9U3s5j0,261
26
+ arize/_generated/api_client/api/datasets_api.py,sha256=pwS_NU7puzAdoqp49D24XjgcReptPue6K2ZI_C8DwYY,102867
27
+ arize/_generated/api_client/api/experiments_api.py,sha256=xMMH-QA80mmXXPbGKKPIONMnxNowSGlf8wVdLKqzPss,65311
28
+ arize/_generated/api_client/api/projects_api.py,sha256=SRMimrrXNZLlKD9zbTFs-iy2SeOHiVDdlMB0Hbp0ApE,48820
29
+ arize/_generated/api_client/models/__init__.py,sha256=qajnlyF3Q2lCuIIeCqldVFcdgogFPd2iLr5YMYv8Alw,2261
30
+ arize/_generated/api_client/models/dataset.py,sha256=eStUwLDPU7j3kMTdSO7RqMCScsGU9rOZtU41xnSXUUs,4332
31
+ arize/_generated/api_client/models/dataset_example.py,sha256=avmtSuitMruY7Yphw5gDpPbfkx_GKDhePBSoG6S_sc0,3825
32
+ arize/_generated/api_client/models/dataset_example_update.py,sha256=DMV1_IkN74tQJrnWFPsJ-7Yj9d-tBaF2rVZZlktprpo,3290
33
+ arize/_generated/api_client/models/dataset_version.py,sha256=OlkhTlcQuNvxJdNxxU5CpHZ9a2OCro5FRPAUMCYLBdE,3709
34
+ arize/_generated/api_client/models/datasets_create_request.py,sha256=av3O6kxoeLL1JACsDL_SrHnNKTNVMHlUyrcBhrsiOac,3673
35
+ arize/_generated/api_client/models/datasets_examples_insert_request.py,sha256=u_9QqAgcEUVUyZoZJCWnd9Wuz00-vyRrDKL-82hXO4U,3456
36
+ arize/_generated/api_client/models/datasets_examples_list200_response.py,sha256=fIY3yg5cbIcRBdawxBRnWqDt5dxOLN1Pxju_g6BDU30,3869
37
+ arize/_generated/api_client/models/datasets_examples_update_request.py,sha256=awa70zUxyMPLiEddQmcigVCR4tPhqTjVL6ClV-CeqK4,3797
38
+ arize/_generated/api_client/models/datasets_list200_response.py,sha256=KsDfQU44q7gg7TwR5MDmJfkp69-SNTo_c87d9uz_8fk,3777
39
+ arize/_generated/api_client/models/experiment.py,sha256=hmolU5fJAJbZ8HQaApPgmODAiqTJ-mudkc525_uwhrI,4416
40
+ arize/_generated/api_client/models/experiment_run.py,sha256=YB2I6rjBCVYdg42iuqLDIV4APssawXGkPJsBdF_Mv9U,3692
41
+ arize/_generated/api_client/models/experiment_run_create.py,sha256=nkMc9ojyFG77wf2jaY0iipiDIg4FmgsNr_inp_XK8rw,3444
42
+ arize/_generated/api_client/models/experiments_create_request.py,sha256=L0DllTYtkIuS7sEX7tnxULTkvrhCBYwIDTICvSkwcvs,3773
43
+ arize/_generated/api_client/models/experiments_list200_response.py,sha256=AKot7N4isrGFHNr6-mXsSr8ikeo5veneFFsuGYRKSRc,3843
44
+ arize/_generated/api_client/models/experiments_runs_list200_response.py,sha256=vkaYsUKdAnChSBKCEzxc1DrE5vs_0tG1Ya-yXhjuPBo,3979
45
+ arize/_generated/api_client/models/pagination_metadata.py,sha256=2NgzlV140yhFqS8IURPfMrVtW2p-0Xr3DaA9GxFfInw,3262
46
+ arize/_generated/api_client/models/primitive_value.py,sha256=iDHyARo1ILnJymsS9EaVFE5V37X0BvUB6uTX_aVhKbg,6400
47
+ arize/_generated/api_client/models/problem.py,sha256=mbAAHZAC8mKYC0r902SGE4QcLCUMfSzFJOLvjyjO8Pw,3584
48
+ arize/_generated/api_client/models/project.py,sha256=w4OT222655N-dd8IHauiDobgUyMnol4xzZ80Rniv3ts,3636
49
+ arize/_generated/api_client/models/projects_create_request.py,sha256=hnnerivgBpJ4BNcdE1hfZ8EoIawtmxsx1iv8NVoHkw4,3024
50
+ arize/_generated/api_client/models/projects_list200_response.py,sha256=ibz4CJNTDX5Y6eiEY2_j2R-L_rTWsTTzaRVCN3iWRDI,3777
51
+ arize/_generated/api_client/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
52
+ arize/_generated/api_client/test/test_dataset.py,sha256=ZVNd_Nt8qkcelrpCuX3mYx8JP5q23EBbudWR8m3OR5U,2391
53
+ arize/_generated/api_client/test/test_dataset_example.py,sha256=musVzDrorF1yf5ozlAnntPyMad9QQPgxoldJjxb7lAc,1876
54
+ arize/_generated/api_client/test/test_dataset_example_update.py,sha256=Z59KydV8_su5QlPdFx7Vs4WAOh-NEYvNVMsIe_5bz0k,1521
55
+ arize/_generated/api_client/test/test_dataset_version.py,sha256=rPczEI--Htxd5tRYzCgNMYEisu7ub87EOxRE-ZIEbp0,1996
56
+ arize/_generated/api_client/test/test_datasets_api.py,sha256=2WYqfqygypzUEB61iMzqWZRAZIyYhrZQ3LaNZDAOIhc,1707
57
+ arize/_generated/api_client/test/test_datasets_create_request.py,sha256=wjDWgl-NUlaQZTM0eDpVN15fvJ0tH9c3RegBwOKAYCk,1873
58
+ arize/_generated/api_client/test/test_datasets_examples_insert_request.py,sha256=N3mAB0BjNAXGdEyN6l3BmRiUeXG4WUoRxgjtvjmWX7w,1854
59
+ arize/_generated/api_client/test/test_datasets_examples_list200_response.py,sha256=gfm4cmvhpOr0bXLgoRN1G2I9wc155F4IPDjvVySLWcw,2244
60
+ arize/_generated/api_client/test/test_datasets_examples_update_request.py,sha256=a1m-IaI0RGUd3dd6ktQG0nADEORX_r0KLbY-9IqbwBw,1888
61
+ arize/_generated/api_client/test/test_datasets_list200_response.py,sha256=jRWD_HBWE3doypQuaexSp39F_fFdp-aJVXsosxM36M8,3905
62
+ arize/_generated/api_client/test/test_experiment.py,sha256=sOwd8Rep47jAf7vhq1hm3rK0P7I0VpGS9cZJLOb1RSE,2080
63
+ arize/_generated/api_client/test/test_experiment_run.py,sha256=FPmaQpEPqs6_jR-o7S-Ejaj2OKeJjO7pLOr-r51fetk,1560
64
+ arize/_generated/api_client/test/test_experiment_run_create.py,sha256=oZorTWEiI6fTmSFw35vZe-1Npw92Ne01nTIbRmfPnAc,1583
65
+ arize/_generated/api_client/test/test_experiments_api.py,sha256=Ez6hw0XNW9y2IDLR6_7YlgjbTXgfZr9JxBoaVxEU8N8,1414
66
+ arize/_generated/api_client/test/test_experiments_create_request.py,sha256=7bNXzkDE3kL5VZCi1ogey9pWmWWqGi_rDG60_93bQoA,1927
67
+ arize/_generated/api_client/test/test_experiments_list200_response.py,sha256=NlLuUOjLRXlUqFsgqSI04B2wCl_4OEZUMtGJrVGUwWA,3085
68
+ arize/_generated/api_client/test/test_experiments_runs_list200_response.py,sha256=BtOi_RMEYJciMCazYfmCkR3BbXi8VDdYm1qs_8razkE,2246
69
+ arize/_generated/api_client/test/test_pagination_metadata.py,sha256=6I0fz9C-PeS0xGlqfnpCb95jieoCp6wzC_77pFefiI4,1546
70
+ arize/_generated/api_client/test/test_primitive_value.py,sha256=e3Hj8RATS82D1QpAtxysqRrgccFaYXHJHsX0hkLNC90,1399
71
+ arize/_generated/api_client/test/test_problem.py,sha256=cP3YV_YYLjkZuh7RCKUoqJy1FuxukuRj1swYKzFmz9g,1514
72
+ arize/_generated/api_client/test/test_project.py,sha256=89LB5u8gUqrNBGWt9UfC47A9pBFpLZlJ1DqwjUGKsfU,1693
73
+ arize/_generated/api_client/test/test_projects_api.py,sha256=oFZh9KZlPpc-Jaf5IQ1NhLOHJf0sJBHAJIrvPACYmXI,1207
74
+ arize/_generated/api_client/test/test_projects_create_request.py,sha256=fhmr9HTlcn9khjeiLGm5zMfCtPvXIiRu1Wb3bbcWOj4,1599
75
+ arize/_generated/api_client/test/test_projects_list200_response.py,sha256=l0yfAWNkYNRQn7d3ziANxtz-OlqGGWVlyqaxlyEBJeE,2575
76
+ arize/_generated/protocol/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
77
+ arize/_generated/protocol/flight/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
78
+ arize/_generated/protocol/flight/flight_pb2.py,sha256=buKnlVPQSFpynK8AYJTfHRjfIFsfwf7khjOhyTjv4gk,27790
79
+ arize/_generated/protocol/rec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
80
+ arize/_generated/protocol/rec/public_pb2.py,sha256=vgP-yTSZLeomVwfIzcOo6t3i1mPCCNJGgd41ZkfLNng,79898
81
+ arize/constants/__init__.py,sha256=QYJ_twp380ASZP1eJzEHru-utxKwxL6wTyiRM575RXM,68
82
+ arize/constants/config.py,sha256=GzyD4z5pw6ZXc1VbUcEPAsxKGmPsFMYbbJFVltPtAP8,1731
83
+ arize/constants/ml.py,sha256=LzkvxpFk7VdEZxOxjJq19OkDwo1wywCgRAVpsl5ZcAk,2457
84
+ arize/constants/model_mapping.json,sha256=OPE54rBATzmwRhx0tycsxnGae1jBhtqEmQqQvzleTSc,5725
85
+ arize/constants/openinference.py,sha256=mnjtbelFbJYJDZ65HQ3lZ6Xr0YyYudBIyTw5cLKA_CI,610
86
+ arize/constants/pyarrow.py,sha256=4OXNqSYxWxkbmjJTwGxHst8Ch0cmCXsBjUuy1T7rSf4,78
87
+ arize/constants/spans.py,sha256=fQpzvQBDGYDHg_48wymVwGSvAnMnUUopHBLwNAskP3Q,2597
88
+ arize/datasets/__init__.py,sha256=t-nswFsscEAy7ixz_g2gEdLN3TCNVdeD9JiOcPdBvwI,69
89
+ arize/datasets/client.py,sha256=Lt0UU2QSMzTk7dREoaOsCv8MMztx20Ynw_w6Kq4WRzQ,18175
90
+ arize/datasets/errors.py,sha256=Vx54dsl1TEXNch8dht49NXr1dZFDp6AGX-Yhw-Qxh9w,3078
91
+ arize/datasets/validation.py,sha256=vnfSs3PrhtVD4nAeNL-Q2yk_6lHXGVfGekGPo9wHcVI,1684
92
+ arize/embeddings/__init__.py,sha256=Dsh7Ncap6Q47M5_5n0vWzwKkPJtVhZBGke3ygXx02KE,226
93
+ arize/embeddings/auto_generator.py,sha256=iFbU1pentuQCzqmb0PMEuTS7p2PyXzbE38OpmahfKH8,4518
94
+ arize/embeddings/base_generators.py,sha256=MdQOMcSHhNUs-VygIPpOAcmsruaQzFfBe_dzzrHCXXQ,11452
95
+ arize/embeddings/constants.py,sha256=oS7rM8Rqn03B76EKpg6uNtfP5dsx0ptCA34SI0X2RAA,1177
96
+ arize/embeddings/cv_generators.py,sha256=U_MA7YVh4s1bDqCOHjIJkYE-y3SDRJ68Nw_HusRDKX8,1639
97
+ arize/embeddings/errors.py,sha256=CcXjRUsQUq_1nQUVv9Qj8fLgQdAo9bzFq3ZEiEWFf9s,2366
98
+ arize/embeddings/nlp_generators.py,sha256=_DE4qaTGPnHMPqlGn0HuBxCw-x5dzMFvBLKMJfZYCKU,4573
99
+ arize/embeddings/tabular_generators.py,sha256=QPfVKfbvDghYEey7cfaC0D9MBkFgD2-7ODDlmflCXFc,6539
100
+ arize/embeddings/usecases.py,sha256=BAcEHTVF1abfe_Izf4eqCj5l-jPgLGs2phTfYVZ1nB0,850
101
+ arize/exceptions/__init__.py,sha256=-16kxctvh4CU_PAekPti-UI7ZTVcCkUrttwoXBa-Eq4,59
102
+ arize/exceptions/auth.py,sha256=ZCkJ15dW_3h7Fm4AawQaGJejrOEWn1wAXVoxBGA3XhA,749
103
+ arize/exceptions/base.py,sha256=0D5fqNul3SBPh2tvVAwocZwiBNspeTh7umI1CTqISw8,4400
104
+ arize/exceptions/models.py,sha256=Pe9QzdPl7hAWkJwHVm0QXBzmG2WFi2Xa_GNQOqGAJeM,1259
105
+ arize/exceptions/parameters.py,sha256=xbF38TNZI14PruYMor6DYVMB7uVhyusJfRPUn_YPHzU,15175
106
+ arize/exceptions/spaces.py,sha256=RZdXCnxkc-t5_jY2je7gVUDxaXhBQvKpXcUGXptO8mA,631
107
+ arize/exceptions/types.py,sha256=ks-4B2YpiVxHVopWUh4Gv_iM2h-LhdJ_zZDXtN3Ctc0,9468
108
+ arize/exceptions/values.py,sha256=rzT8sZbY2m2Vxc5vt5V-ZjsQyiGbxM0pxPi-bp9d-pU,27920
109
+ arize/experiments/__init__.py,sha256=8ESMbJbtGc3VGDo4efQxxCeXmuZlT-0tPv-EBS48Xpo,358
110
+ arize/experiments/client.py,sha256=ScUgT44GkNJ6SdwctHeLPNefev3hLCjW55PVkVf_-xI,26233
111
+ arize/experiments/functions.py,sha256=b51Dv1qk4oiDiJv6VZgpBhfdKlo4ff8FLTtH5ruEPOA,34675
112
+ arize/experiments/tracing.py,sha256=P3Q2DTUGNsRhvxRNAx_NXY30Id8y7cw9MV9piduSbB0,10207
113
+ arize/experiments/types.py,sha256=qwv-LV9DqfdlKwXc4SdL9p2QsI8pHoEy2_HCldzsdZs,14093
114
+ arize/experiments/evaluators/__init__.py,sha256=FUTfWRir8jaY8PC3pRHUy5m4RqrKRBPD1EJ4GYkIMLY,76
115
+ arize/experiments/evaluators/base.py,sha256=m9Gk2efWyssSYnZIdSJouB6CNx1KkqHjHUrRWft1L54,10981
116
+ arize/experiments/evaluators/exceptions.py,sha256=iqg5-OcGfRWY354OCcdmVC39cb3jEb-RO1LnVn7BD7M,376
117
+ arize/experiments/evaluators/executors.py,sha256=G6StVzZDd5MbXWENiCgFd1eDgNgMs6IWRc-0OtRyKvk,20722
118
+ arize/experiments/evaluators/rate_limiters.py,sha256=9PextZkLHljvY9t1yR4Lx_ryFW5Eht00irB87dxnWeA,13567
119
+ arize/experiments/evaluators/types.py,sha256=q_p5gaGiKvV14OgfDAI_Kn44Ribou3UfxizAJ9Bl5sM,4509
120
+ arize/experiments/evaluators/utils.py,sha256=nzl7DtucZoIQTwDpcLJUSlTbCsnyLNLFmwvovWB6GOg,7884
121
+ arize/ml/__init__.py,sha256=jWGnNLghA0TkmR033NewriFUleH46zCTC4MCoGADE5c,68
122
+ arize/ml/bounded_executor.py,sha256=BZF19icwV8UaRm8Otw8leiAgjDYultDDmvuSPXw2sx8,1669
123
+ arize/ml/casting.py,sha256=lNEDTremFv5R5IR2F8mSAD4ufDgawQOjFIWo5AyAGi0,14016
124
+ arize/ml/client.py,sha256=SVLVjB4C3bk__LNlFQyfb4nb5v_7jiZudWR-kweI8lo,58403
125
+ arize/ml/proto.py,sha256=_zzE2ESKU2NmRHjCU0lTUR55m9LKSi3s0DKTGhJFYcI,19077
126
+ arize/ml/stream_validation.py,sha256=5P-OFUiXCvdEoHTTbr1VsI_PRmeMaWtrLpG_Fagf-CE,8287
127
+ arize/ml/types.py,sha256=oSGmfIKxRZxX5FXsN0-sWRPHVjZUjkh58GV_zGwdeE8,71033
128
+ arize/ml/batch_validation/__init__.py,sha256=mvn_TLQvgL6lwLvaTedzH0GGABrJViDkh77M38aFXQ4,49
129
+ arize/ml/batch_validation/errors.py,sha256=FXiQKRrWh-a_9siEOO6dc9xEn_onS7jtDvNT-eFWnp4,61681
130
+ arize/ml/batch_validation/validator.py,sha256=Hz9ctp_iUHoS9kViPq5qBz5uTHIaHm4w4WILQngen1g,147757
131
+ arize/ml/surrogate_explainer/__init__.py,sha256=jxFXugcjhip4Lg5M1ikrnq5xODwS1Z5Tt30NeVkCpH0,70
132
+ arize/ml/surrogate_explainer/mimic.py,sha256=Zx5idIHUyln0AxsU4K0NJoQ1HFOtKk0GoA6bZ4ctTLg,6214
133
+ arize/projects/__init__.py,sha256=hx29_muM9ZJxH5j518QJ88-_VVRAFymF5WLRvQVpDH8,64
134
+ arize/projects/client.py,sha256=hjyqg8yfINEIyorPIEwndurnaIfQimjxHQG6AQ_lt-U,4341
135
+ arize/spans/__init__.py,sha256=rXRx4DshOoP9WmbVRUyYdM_QHtUmUTbfO2pZPkztKL0,57
136
+ arize/spans/client.py,sha256=45wkvUmdxtYQKNp75RQYSkuM_Hwx_6Uf-V8osF0h8S8,48785
137
+ arize/spans/columns.py,sha256=Sap8UrOeeFebxsI1LbelustuirAPmKrtjW8z3vHJVFk,13378
138
+ arize/spans/conversion.py,sha256=9GrNd9puZtJJZma2C6UMmNEcTfkb4maG1BxkRiE7zZU,4937
139
+ arize/spans/validation/__init__.py,sha256=QSb0EFPBCI2riIrgtSaFXPDGDPQ_aYK4N1Dej499cu8,55
140
+ arize/spans/validation/annotations/__init__.py,sha256=AW7uOEA-uBbM39cdy5SEyi6dC_oYUP_zzW72qkYoFlI,51
141
+ arize/spans/validation/annotations/annotations_validation.py,sha256=WDChwwqiwlI-lPT7jGA7THllL3a93foZWnyjIkrUjUg,2763
142
+ arize/spans/validation/annotations/dataframe_form_validation.py,sha256=V050mg0IW_rc6Iimv9E3ZEdfi7A14ZuacE3mfuDR45A,7079
143
+ arize/spans/validation/annotations/value_validation.py,sha256=mZq9iQIfUl7YE-ctwYrt8vQvgDeKsgMhb-uPF1_PFZA,8650
144
+ arize/spans/validation/common/__init__.py,sha256=oJ2KdLO6gpl0AUuA8zCuyU5kB_TFW0dPyVpBQtFk_EU,66
145
+ arize/spans/validation/common/argument_validation.py,sha256=Xa0hzsC0YIkE7dF62_Bij4Km8QR41zFJ6fUTUlOPnag,2316
146
+ arize/spans/validation/common/dataframe_form_validation.py,sha256=GmN0Tx_4Btsf1ChenTI0fEHT8-IhnzOEEQ4ek3T4Bmk,2023
147
+ arize/spans/validation/common/errors.py,sha256=pWkQlNuQiUcSNy1scQhbVpL7OiXo_bjYH7Su_R-9AP0,22388
148
+ arize/spans/validation/common/value_validation.py,sha256=593mcfW73y9vvMZvFyhfqhs4TXHoKDxj_Aksu3IQzGg,9314
149
+ arize/spans/validation/evals/__init__.py,sha256=RMMOzvDKk1c-X1OmFeMoezDom4LnhVELDfU5EmojqIY,56
150
+ arize/spans/validation/evals/dataframe_form_validation.py,sha256=LBqIRUBDAGeDU313bb89Ng8J75U7eBQ3muVtInO2TqY,3957
151
+ arize/spans/validation/evals/evals_validation.py,sha256=-FA2uyrpe9gKeZX9_AQayOMq9Am5ib8mZjDXwgf4MFI,3285
152
+ arize/spans/validation/evals/value_validation.py,sha256=Gn0V_xhY0uk-qWtQLLV-1N4mi-3amOmbu7e2DvRHVGs,4080
153
+ arize/spans/validation/metadata/__init__.py,sha256=gfKaohBZWKsZV2u0NImP-u8mziLHputqSRDwtdVgfnI,49
154
+ arize/spans/validation/metadata/argument_validation.py,sha256=HY5j8S0SHCz4AzVy8bl2A5HeDIJESxwStnA39bACMX8,1953
155
+ arize/spans/validation/metadata/dataframe_form_validation.py,sha256=CVoO0-8_0cGoFhsfYD2IpTuucAdpy13CbaTZcti0Ngs,4011
156
+ arize/spans/validation/metadata/value_validation.py,sha256=bUWpDPPiw42iMQuBfLw81ToauMOHduk8H7U_LK4nioc,10251
157
+ arize/spans/validation/spans/__init__.py,sha256=hAgCnolxy6tyb6q1NBzGziezviJswtcnTsChwbkLIvA,44
158
+ arize/spans/validation/spans/dataframe_form_validation.py,sha256=HdM5JUPef4uxyxZeTzjb5FDG7ntSAOashdiXfFxomFM,6377
159
+ arize/spans/validation/spans/spans_validation.py,sha256=sULXzYMJ_INTiRlddJ7Z-iqTAszhIuMEmvaSPk-zrus,3485
160
+ arize/spans/validation/spans/value_validation.py,sha256=nM2tHyt6nIf5yCjAUfDrzbDnXUBWPlAJ0Yht6MObQ2A,21430
161
+ arize/utils/__init__.py,sha256=ScWPiN7pTi2-i6gqRryH9Nlp78zz6X_tbgu_RxLJTEM,62
162
+ arize/utils/arrow.py,sha256=mX6aLjHYNPZrMKJD0Nc-rki_n10Mpq7w6CsSHnVIcLI,5955
163
+ arize/utils/cache.py,sha256=a8jNEZx7R8t3UvmyyyPh2sbjiMaMQlmDRK2-1eLkUeU,3018
164
+ arize/utils/dataframe.py,sha256=qSjT2b9K1gIBBOY7o5FpRMi-qTL1NrGIPp43buw3ito,1758
165
+ arize/utils/openinference_conversion.py,sha256=cUUaWSu9FR99IF0hoIvijcBPrKcHVUuPu4tFoW0obrY,2912
166
+ arize/utils/proto.py,sha256=cXxZr4UwZpEOlxZdZA8B-YY5herdFbZCnxLngGhtrZc,643
167
+ arize/utils/size.py,sha256=qIjUYYg-NttqK25ObX17_32MzkAepLJDDv8N7YxJwAo,805
168
+ arize/utils/types.py,sha256=BxAQwrqRMeA5BaDZcmEczcKkd-T33mi25FL9kBroNXA,2892
169
+ arize/utils/online_tasks/__init__.py,sha256=T7778_bgutP0U7h8e9NRPYfwBQSmHOi859M1K2fjpjw,213
170
+ arize/utils/online_tasks/dataframe_preprocessor.py,sha256=-VcQSetJjZJamWyZryvkA1LhPOT7BdqDGOL4hP-wtik,9399
171
+ arize-8.0.0b0.dist-info/METADATA,sha256=wRxcpzxQ06IxGjITW8n-kRBjEr_DlocmQXRAIW74oA0,29211
172
+ arize-8.0.0b0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
173
+ arize-8.0.0b0.dist-info/licenses/LICENSE,sha256=Yseh419WQGiW16p8pS0MwNJyrAIrXSeW59aQXbijY2o,9723
174
+ arize-8.0.0b0.dist-info/licenses/NOTICE,sha256=V9Mdpy_w2tgo5GxgjpsZFTu2WcltLQIh6wBVFwBnJuY,550
175
+ arize-8.0.0b0.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: hatchling 1.27.0
2
+ Generator: hatchling 1.28.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -0,0 +1,176 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
@@ -0,0 +1,13 @@
1
+ Copyright 2020, Arize AI
2
+
3
+ Licensed under the Apache License, Version 2.0 (the "License");
4
+ you may not use this file except in compliance with the License.
5
+ You may obtain a copy of the License at
6
+
7
+ http://www.apache.org/licenses/LICENSE-2.0
8
+
9
+ Unless required by applicable law or agreed to in writing, software
10
+ distributed under the License is distributed on an "AS IS" BASIS,
11
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ See the License for the specific language governing permissions and
13
+ limitations under the License.
@@ -1,61 +0,0 @@
1
- # -*- coding: utf-8 -*-
2
- # Generated by the protocol buffer compiler. DO NOT EDIT!
3
- # source: export.proto
4
- """Generated protocol buffer code."""
5
- from google.protobuf import descriptor as _descriptor
6
- from google.protobuf import descriptor_pool as _descriptor_pool
7
- from google.protobuf import message as _message
8
- from google.protobuf import reflection as _reflection
9
- from google.protobuf import symbol_database as _symbol_database
10
- # @@protoc_insertion_point(imports)
11
-
12
- _sym_db = _symbol_database.Default()
13
-
14
-
15
- from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
16
- from google.protobuf import wrappers_pb2 as google_dot_protobuf_dot_wrappers__pb2
17
-
18
-
19
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x0c\x65xport.proto\x12\x06public\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1egoogle/protobuf/wrappers.proto\"\xdb\x04\n\x15RecordQueryDescriptor\x12\x10\n\x08space_id\x18\x01 \x01(\t\x12\x10\n\x08model_id\x18\x02 \x01(\t\x12>\n\x0b\x65nvironment\x18\x03 \x01(\x0e\x32).public.RecordQueryDescriptor.Environment\x12\x15\n\rmodel_version\x18\x04 \x01(\t\x12\x10\n\x08\x62\x61tch_id\x18\x05 \x01(\t\x12.\n\nstart_time\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12,\n\x08\x65nd_time\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x17\n\x0finclude_actuals\x18\x08 \x01(\x08\x12\x19\n\x11\x66ilter_expression\x18\t \x01(\t\x12@\n\x18similarity_search_params\x18\n \x01(\x0b\x32\x1e.public.SimilaritySearchParams\x12\x19\n\x11projected_columns\x18\x0b \x03(\t\x12\x36\n\x11stream_chunk_size\x18\x0c \x01(\x0b\x32\x1b.google.protobuf.Int64Value\x12\x37\n\x13parallelize_exports\x18\r \x01(\x0b\x32\x1a.google.protobuf.BoolValue\"U\n\x0b\x45nvironment\x12\x0b\n\x07UNKNOWN\x10\x00\x12\x0c\n\x08TRAINING\x10\x01\x12\x0e\n\nVALIDATION\x10\x02\x12\x0e\n\nPRODUCTION\x10\x03\x12\x0b\n\x07TRACING\x10\x04\"\x93\x02\n\x16SimilaritySearchParams\x12<\n\nreferences\x18\x01 \x03(\x0b\x32(.public.SimilaritySearchParams.Reference\x12\x1a\n\x12search_column_name\x18\x02 \x01(\t\x12\x11\n\tthreshold\x18\x03 \x01(\x01\x1a\x8b\x01\n\tReference\x12\x15\n\rprediction_id\x18\x01 \x01(\t\x12\x1d\n\x15reference_column_name\x18\x02 \x01(\t\x12\x38\n\x14prediction_timestamp\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x0e\n\x06vector\x18\x04 \x03(\x01\x42?Z=github.com/Arize-ai/arize/go/pkg/flightserver/protocol/publicb\x06proto3')
20
-
21
-
22
-
23
- _RECORDQUERYDESCRIPTOR = DESCRIPTOR.message_types_by_name['RecordQueryDescriptor']
24
- _SIMILARITYSEARCHPARAMS = DESCRIPTOR.message_types_by_name['SimilaritySearchParams']
25
- _SIMILARITYSEARCHPARAMS_REFERENCE = _SIMILARITYSEARCHPARAMS.nested_types_by_name['Reference']
26
- _RECORDQUERYDESCRIPTOR_ENVIRONMENT = _RECORDQUERYDESCRIPTOR.enum_types_by_name['Environment']
27
- RecordQueryDescriptor = _reflection.GeneratedProtocolMessageType('RecordQueryDescriptor', (_message.Message,), {
28
- 'DESCRIPTOR' : _RECORDQUERYDESCRIPTOR,
29
- '__module__' : 'export_pb2'
30
- # @@protoc_insertion_point(class_scope:public.RecordQueryDescriptor)
31
- })
32
- _sym_db.RegisterMessage(RecordQueryDescriptor)
33
-
34
- SimilaritySearchParams = _reflection.GeneratedProtocolMessageType('SimilaritySearchParams', (_message.Message,), {
35
-
36
- 'Reference' : _reflection.GeneratedProtocolMessageType('Reference', (_message.Message,), {
37
- 'DESCRIPTOR' : _SIMILARITYSEARCHPARAMS_REFERENCE,
38
- '__module__' : 'export_pb2'
39
- # @@protoc_insertion_point(class_scope:public.SimilaritySearchParams.Reference)
40
- })
41
- ,
42
- 'DESCRIPTOR' : _SIMILARITYSEARCHPARAMS,
43
- '__module__' : 'export_pb2'
44
- # @@protoc_insertion_point(class_scope:public.SimilaritySearchParams)
45
- })
46
- _sym_db.RegisterMessage(SimilaritySearchParams)
47
- _sym_db.RegisterMessage(SimilaritySearchParams.Reference)
48
-
49
- if _descriptor._USE_C_DESCRIPTORS == False:
50
-
51
- DESCRIPTOR._options = None
52
- DESCRIPTOR._serialized_options = b'Z=github.com/Arize-ai/arize/go/pkg/flightserver/protocol/public'
53
- _RECORDQUERYDESCRIPTOR._serialized_start=90
54
- _RECORDQUERYDESCRIPTOR._serialized_end=693
55
- _RECORDQUERYDESCRIPTOR_ENVIRONMENT._serialized_start=608
56
- _RECORDQUERYDESCRIPTOR_ENVIRONMENT._serialized_end=693
57
- _SIMILARITYSEARCHPARAMS._serialized_start=696
58
- _SIMILARITYSEARCHPARAMS._serialized_end=971
59
- _SIMILARITYSEARCHPARAMS_REFERENCE._serialized_start=832
60
- _SIMILARITYSEARCHPARAMS_REFERENCE._serialized_end=971
61
- # @@protoc_insertion_point(module_scope)