arize 8.0.0a22__py3-none-any.whl → 8.0.0a23__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 (166) hide show
  1. arize/__init__.py +17 -9
  2. arize/_exporter/client.py +55 -36
  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 +268 -55
  65. arize/config.py +365 -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 +299 -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 +31 -12
  83. arize/embeddings/tabular_generators.py +32 -20
  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 +1 -0
  94. arize/experiments/client.py +389 -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/models/__init__.py +1 -0
  107. arize/models/batch_validation/__init__.py +1 -0
  108. arize/models/batch_validation/errors.py +543 -65
  109. arize/models/batch_validation/validator.py +339 -300
  110. arize/models/bounded_executor.py +20 -7
  111. arize/models/casting.py +75 -29
  112. arize/models/client.py +326 -107
  113. arize/models/proto.py +95 -40
  114. arize/models/stream_validation.py +42 -14
  115. arize/models/surrogate_explainer/__init__.py +1 -0
  116. arize/models/surrogate_explainer/mimic.py +24 -13
  117. arize/pre_releases.py +43 -0
  118. arize/projects/__init__.py +1 -0
  119. arize/projects/client.py +129 -0
  120. arize/regions.py +40 -0
  121. arize/spans/__init__.py +1 -0
  122. arize/spans/client.py +130 -106
  123. arize/spans/columns.py +13 -0
  124. arize/spans/conversion.py +54 -38
  125. arize/spans/validation/__init__.py +1 -0
  126. arize/spans/validation/annotations/__init__.py +1 -0
  127. arize/spans/validation/annotations/annotations_validation.py +6 -4
  128. arize/spans/validation/annotations/dataframe_form_validation.py +13 -11
  129. arize/spans/validation/annotations/value_validation.py +35 -11
  130. arize/spans/validation/common/__init__.py +1 -0
  131. arize/spans/validation/common/argument_validation.py +33 -8
  132. arize/spans/validation/common/dataframe_form_validation.py +35 -9
  133. arize/spans/validation/common/errors.py +211 -11
  134. arize/spans/validation/common/value_validation.py +80 -13
  135. arize/spans/validation/evals/__init__.py +1 -0
  136. arize/spans/validation/evals/dataframe_form_validation.py +28 -8
  137. arize/spans/validation/evals/evals_validation.py +34 -4
  138. arize/spans/validation/evals/value_validation.py +26 -3
  139. arize/spans/validation/metadata/__init__.py +1 -1
  140. arize/spans/validation/metadata/argument_validation.py +14 -5
  141. arize/spans/validation/metadata/dataframe_form_validation.py +26 -10
  142. arize/spans/validation/metadata/value_validation.py +24 -10
  143. arize/spans/validation/spans/__init__.py +1 -0
  144. arize/spans/validation/spans/dataframe_form_validation.py +34 -13
  145. arize/spans/validation/spans/spans_validation.py +35 -4
  146. arize/spans/validation/spans/value_validation.py +76 -7
  147. arize/types.py +293 -157
  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 +19 -2
  152. arize/utils/online_tasks/__init__.py +2 -0
  153. arize/utils/online_tasks/dataframe_preprocessor.py +53 -41
  154. arize/utils/openinference_conversion.py +44 -5
  155. arize/utils/proto.py +10 -0
  156. arize/utils/size.py +5 -3
  157. arize/version.py +3 -1
  158. {arize-8.0.0a22.dist-info → arize-8.0.0a23.dist-info}/METADATA +4 -3
  159. arize-8.0.0a23.dist-info/RECORD +174 -0
  160. {arize-8.0.0a22.dist-info → arize-8.0.0a23.dist-info}/WHEEL +1 -1
  161. arize-8.0.0a23.dist-info/licenses/LICENSE +176 -0
  162. arize-8.0.0a23.dist-info/licenses/NOTICE +13 -0
  163. arize/_generated/protocol/flight/export_pb2.py +0 -61
  164. arize/_generated/protocol/flight/ingest_pb2.py +0 -365
  165. arize-8.0.0a22.dist-info/RECORD +0 -146
  166. arize-8.0.0a22.dist-info/licenses/LICENSE.md +0 -12
@@ -0,0 +1,174 @@
1
+ arize/__init__.py,sha256=uoxsS4MydJGhVDFwCXm5g6NDthLqE_UWU1T9grSFrAU,3361
2
+ arize/_lazy.py,sha256=aLdgSGxdfdV9QiLllxlLlkN5k44pFf_7jdKRV9Z9sgo,2864
3
+ arize/client.py,sha256=rvTGFYlxucyd9up-E6sYU3tzeRK9y06FmEipIoVS7ig,16831
4
+ arize/config.py,sha256=Q8NPHdmyTVC716i-m19POHDk_MMiWDAtnmDGwENqcaA,16631
5
+ arize/logging.py,sha256=CZkgdpDKXoNNJ9fQMNwbCQEe-ipUg7fQf_CE1hRN1Qc,8574
6
+ arize/pre_releases.py,sha256=AMBKBbs77K7LJQTDfTTmY5zeFUwx3GhXHQDMDgHBUxU,1150
7
+ arize/regions.py,sha256=oEKJdZbW5r8X3fL3PaDVMdk-f2MoZ8OBvUvYZLMGBpw,1039
8
+ arize/types.py,sha256=WIII5GNTQJkjA8Rl8LDGB4ivv5XicDU8NXh_ebuvsuc,75808
9
+ arize/version.py,sha256=O_ndXStrVFGj9VC7QYFp4aClH6v30C5cJZdPuDX-vvQ,71
10
+ arize/_exporter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ arize/_exporter/client.py,sha256=82NLurSKkf3RBJmFxcLriwlUv3nJwzn9i0qvaU3s6K8,16422
12
+ arize/_exporter/validation.py,sha256=9gX4oHrZcChMfkwoBpe3Qp4aK-txy_zZ4azrKf-bEQw,1022
13
+ arize/_exporter/parsers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
+ arize/_exporter/parsers/tracing_data_parser.py,sha256=mgpIyKhUeUeW-HMR11Kmo2HSLrUXZJLuqk27aDnytwo,5716
15
+ arize/_flight/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
+ arize/_flight/client.py,sha256=HpUu22Q2r-jnh_j0RaQtJLZnaXKGBNNjZlZ0dvX98xs,20391
17
+ arize/_flight/types.py,sha256=GB_4dQu2ElIrcDGAcqhG7oI4g-b0ZdSlbrQkf0TFzVE,194
18
+ arize/_generated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
+ arize/_generated/api_client_README.md,sha256=SfBbE1r1thnfwk3AVr6CZUP6kJ7HNy28gx1V7DjQhp8,7451
20
+ arize/_generated/api_client/__init__.py,sha256=I_KGjOG-2Z5dokY6Ln9E5fFHUIe53WUvCaUvg4DtQss,4672
21
+ arize/_generated/api_client/api_client.py,sha256=Cr9leKLpAJYQmL_U1hAPsMNFdaSO6Ti1X52jvGp2WsQ,27899
22
+ arize/_generated/api_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
23
+ arize/_generated/api_client/configuration.py,sha256=EJ6DkTKzHWqjN0BwMEHQ1D9pEDdClOsM72EcffquZ9I,19406
24
+ arize/_generated/api_client/exceptions.py,sha256=EAN7PugiYwsF3Puj8S1iWGqptP6kheYykxvZLPEk4rw,6502
25
+ arize/_generated/api_client/rest.py,sha256=OXfGpi__G1f4q3Edgbj4njQNBstouwHUIwrPLJBsVVE,9512
26
+ arize/_generated/api_client/api/__init__.py,sha256=ycVTd-FBlPyFX82wbCQiuCTbj78pZbVv17kX9U3s5j0,261
27
+ arize/_generated/api_client/api/datasets_api.py,sha256=pwS_NU7puzAdoqp49D24XjgcReptPue6K2ZI_C8DwYY,102867
28
+ arize/_generated/api_client/api/experiments_api.py,sha256=xMMH-QA80mmXXPbGKKPIONMnxNowSGlf8wVdLKqzPss,65311
29
+ arize/_generated/api_client/api/projects_api.py,sha256=SRMimrrXNZLlKD9zbTFs-iy2SeOHiVDdlMB0Hbp0ApE,48820
30
+ arize/_generated/api_client/models/__init__.py,sha256=qajnlyF3Q2lCuIIeCqldVFcdgogFPd2iLr5YMYv8Alw,2261
31
+ arize/_generated/api_client/models/dataset.py,sha256=eStUwLDPU7j3kMTdSO7RqMCScsGU9rOZtU41xnSXUUs,4332
32
+ arize/_generated/api_client/models/dataset_example.py,sha256=avmtSuitMruY7Yphw5gDpPbfkx_GKDhePBSoG6S_sc0,3825
33
+ arize/_generated/api_client/models/dataset_example_update.py,sha256=DMV1_IkN74tQJrnWFPsJ-7Yj9d-tBaF2rVZZlktprpo,3290
34
+ arize/_generated/api_client/models/dataset_version.py,sha256=OlkhTlcQuNvxJdNxxU5CpHZ9a2OCro5FRPAUMCYLBdE,3709
35
+ arize/_generated/api_client/models/datasets_create_request.py,sha256=av3O6kxoeLL1JACsDL_SrHnNKTNVMHlUyrcBhrsiOac,3673
36
+ arize/_generated/api_client/models/datasets_examples_insert_request.py,sha256=u_9QqAgcEUVUyZoZJCWnd9Wuz00-vyRrDKL-82hXO4U,3456
37
+ arize/_generated/api_client/models/datasets_examples_list200_response.py,sha256=fIY3yg5cbIcRBdawxBRnWqDt5dxOLN1Pxju_g6BDU30,3869
38
+ arize/_generated/api_client/models/datasets_examples_update_request.py,sha256=awa70zUxyMPLiEddQmcigVCR4tPhqTjVL6ClV-CeqK4,3797
39
+ arize/_generated/api_client/models/datasets_list200_response.py,sha256=KsDfQU44q7gg7TwR5MDmJfkp69-SNTo_c87d9uz_8fk,3777
40
+ arize/_generated/api_client/models/experiment.py,sha256=hmolU5fJAJbZ8HQaApPgmODAiqTJ-mudkc525_uwhrI,4416
41
+ arize/_generated/api_client/models/experiment_run.py,sha256=YB2I6rjBCVYdg42iuqLDIV4APssawXGkPJsBdF_Mv9U,3692
42
+ arize/_generated/api_client/models/experiment_run_create.py,sha256=nkMc9ojyFG77wf2jaY0iipiDIg4FmgsNr_inp_XK8rw,3444
43
+ arize/_generated/api_client/models/experiments_create_request.py,sha256=L0DllTYtkIuS7sEX7tnxULTkvrhCBYwIDTICvSkwcvs,3773
44
+ arize/_generated/api_client/models/experiments_list200_response.py,sha256=AKot7N4isrGFHNr6-mXsSr8ikeo5veneFFsuGYRKSRc,3843
45
+ arize/_generated/api_client/models/experiments_runs_list200_response.py,sha256=vkaYsUKdAnChSBKCEzxc1DrE5vs_0tG1Ya-yXhjuPBo,3979
46
+ arize/_generated/api_client/models/pagination_metadata.py,sha256=2NgzlV140yhFqS8IURPfMrVtW2p-0Xr3DaA9GxFfInw,3262
47
+ arize/_generated/api_client/models/primitive_value.py,sha256=iDHyARo1ILnJymsS9EaVFE5V37X0BvUB6uTX_aVhKbg,6400
48
+ arize/_generated/api_client/models/problem.py,sha256=mbAAHZAC8mKYC0r902SGE4QcLCUMfSzFJOLvjyjO8Pw,3584
49
+ arize/_generated/api_client/models/project.py,sha256=w4OT222655N-dd8IHauiDobgUyMnol4xzZ80Rniv3ts,3636
50
+ arize/_generated/api_client/models/projects_create_request.py,sha256=hnnerivgBpJ4BNcdE1hfZ8EoIawtmxsx1iv8NVoHkw4,3024
51
+ arize/_generated/api_client/models/projects_list200_response.py,sha256=ibz4CJNTDX5Y6eiEY2_j2R-L_rTWsTTzaRVCN3iWRDI,3777
52
+ arize/_generated/api_client/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
53
+ arize/_generated/api_client/test/test_dataset.py,sha256=ZVNd_Nt8qkcelrpCuX3mYx8JP5q23EBbudWR8m3OR5U,2391
54
+ arize/_generated/api_client/test/test_dataset_example.py,sha256=musVzDrorF1yf5ozlAnntPyMad9QQPgxoldJjxb7lAc,1876
55
+ arize/_generated/api_client/test/test_dataset_example_update.py,sha256=Z59KydV8_su5QlPdFx7Vs4WAOh-NEYvNVMsIe_5bz0k,1521
56
+ arize/_generated/api_client/test/test_dataset_version.py,sha256=rPczEI--Htxd5tRYzCgNMYEisu7ub87EOxRE-ZIEbp0,1996
57
+ arize/_generated/api_client/test/test_datasets_api.py,sha256=2WYqfqygypzUEB61iMzqWZRAZIyYhrZQ3LaNZDAOIhc,1707
58
+ arize/_generated/api_client/test/test_datasets_create_request.py,sha256=wjDWgl-NUlaQZTM0eDpVN15fvJ0tH9c3RegBwOKAYCk,1873
59
+ arize/_generated/api_client/test/test_datasets_examples_insert_request.py,sha256=N3mAB0BjNAXGdEyN6l3BmRiUeXG4WUoRxgjtvjmWX7w,1854
60
+ arize/_generated/api_client/test/test_datasets_examples_list200_response.py,sha256=gfm4cmvhpOr0bXLgoRN1G2I9wc155F4IPDjvVySLWcw,2244
61
+ arize/_generated/api_client/test/test_datasets_examples_update_request.py,sha256=a1m-IaI0RGUd3dd6ktQG0nADEORX_r0KLbY-9IqbwBw,1888
62
+ arize/_generated/api_client/test/test_datasets_list200_response.py,sha256=jRWD_HBWE3doypQuaexSp39F_fFdp-aJVXsosxM36M8,3905
63
+ arize/_generated/api_client/test/test_experiment.py,sha256=sOwd8Rep47jAf7vhq1hm3rK0P7I0VpGS9cZJLOb1RSE,2080
64
+ arize/_generated/api_client/test/test_experiment_run.py,sha256=FPmaQpEPqs6_jR-o7S-Ejaj2OKeJjO7pLOr-r51fetk,1560
65
+ arize/_generated/api_client/test/test_experiment_run_create.py,sha256=oZorTWEiI6fTmSFw35vZe-1Npw92Ne01nTIbRmfPnAc,1583
66
+ arize/_generated/api_client/test/test_experiments_api.py,sha256=Ez6hw0XNW9y2IDLR6_7YlgjbTXgfZr9JxBoaVxEU8N8,1414
67
+ arize/_generated/api_client/test/test_experiments_create_request.py,sha256=7bNXzkDE3kL5VZCi1ogey9pWmWWqGi_rDG60_93bQoA,1927
68
+ arize/_generated/api_client/test/test_experiments_list200_response.py,sha256=NlLuUOjLRXlUqFsgqSI04B2wCl_4OEZUMtGJrVGUwWA,3085
69
+ arize/_generated/api_client/test/test_experiments_runs_list200_response.py,sha256=BtOi_RMEYJciMCazYfmCkR3BbXi8VDdYm1qs_8razkE,2246
70
+ arize/_generated/api_client/test/test_pagination_metadata.py,sha256=6I0fz9C-PeS0xGlqfnpCb95jieoCp6wzC_77pFefiI4,1546
71
+ arize/_generated/api_client/test/test_primitive_value.py,sha256=e3Hj8RATS82D1QpAtxysqRrgccFaYXHJHsX0hkLNC90,1399
72
+ arize/_generated/api_client/test/test_problem.py,sha256=cP3YV_YYLjkZuh7RCKUoqJy1FuxukuRj1swYKzFmz9g,1514
73
+ arize/_generated/api_client/test/test_project.py,sha256=89LB5u8gUqrNBGWt9UfC47A9pBFpLZlJ1DqwjUGKsfU,1693
74
+ arize/_generated/api_client/test/test_projects_api.py,sha256=oFZh9KZlPpc-Jaf5IQ1NhLOHJf0sJBHAJIrvPACYmXI,1207
75
+ arize/_generated/api_client/test/test_projects_create_request.py,sha256=fhmr9HTlcn9khjeiLGm5zMfCtPvXIiRu1Wb3bbcWOj4,1599
76
+ arize/_generated/api_client/test/test_projects_list200_response.py,sha256=l0yfAWNkYNRQn7d3ziANxtz-OlqGGWVlyqaxlyEBJeE,2575
77
+ arize/_generated/protocol/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
78
+ arize/_generated/protocol/flight/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
79
+ arize/_generated/protocol/flight/flight_pb2.py,sha256=buKnlVPQSFpynK8AYJTfHRjfIFsfwf7khjOhyTjv4gk,27790
80
+ arize/_generated/protocol/rec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
81
+ arize/_generated/protocol/rec/public_pb2.py,sha256=vgP-yTSZLeomVwfIzcOo6t3i1mPCCNJGgd41ZkfLNng,79898
82
+ arize/constants/__init__.py,sha256=QYJ_twp380ASZP1eJzEHru-utxKwxL6wTyiRM575RXM,68
83
+ arize/constants/config.py,sha256=GzyD4z5pw6ZXc1VbUcEPAsxKGmPsFMYbbJFVltPtAP8,1731
84
+ arize/constants/ml.py,sha256=LzkvxpFk7VdEZxOxjJq19OkDwo1wywCgRAVpsl5ZcAk,2457
85
+ arize/constants/model_mapping.json,sha256=OPE54rBATzmwRhx0tycsxnGae1jBhtqEmQqQvzleTSc,5725
86
+ arize/constants/openinference.py,sha256=mnjtbelFbJYJDZ65HQ3lZ6Xr0YyYudBIyTw5cLKA_CI,610
87
+ arize/constants/pyarrow.py,sha256=4OXNqSYxWxkbmjJTwGxHst8Ch0cmCXsBjUuy1T7rSf4,78
88
+ arize/constants/spans.py,sha256=fQpzvQBDGYDHg_48wymVwGSvAnMnUUopHBLwNAskP3Q,2597
89
+ arize/datasets/__init__.py,sha256=t-nswFsscEAy7ixz_g2gEdLN3TCNVdeD9JiOcPdBvwI,69
90
+ arize/datasets/client.py,sha256=r7c-RHsMkhcWQ-DrfCzW1g1PlctwqUfN89sTH8EPbvQ,17983
91
+ arize/datasets/errors.py,sha256=Vx54dsl1TEXNch8dht49NXr1dZFDp6AGX-Yhw-Qxh9w,3078
92
+ arize/datasets/validation.py,sha256=vnfSs3PrhtVD4nAeNL-Q2yk_6lHXGVfGekGPo9wHcVI,1684
93
+ arize/embeddings/__init__.py,sha256=Dsh7Ncap6Q47M5_5n0vWzwKkPJtVhZBGke3ygXx02KE,226
94
+ arize/embeddings/auto_generator.py,sha256=iFbU1pentuQCzqmb0PMEuTS7p2PyXzbE38OpmahfKH8,4518
95
+ arize/embeddings/base_generators.py,sha256=MdQOMcSHhNUs-VygIPpOAcmsruaQzFfBe_dzzrHCXXQ,11452
96
+ arize/embeddings/constants.py,sha256=oS7rM8Rqn03B76EKpg6uNtfP5dsx0ptCA34SI0X2RAA,1177
97
+ arize/embeddings/cv_generators.py,sha256=U_MA7YVh4s1bDqCOHjIJkYE-y3SDRJ68Nw_HusRDKX8,1639
98
+ arize/embeddings/errors.py,sha256=CcXjRUsQUq_1nQUVv9Qj8fLgQdAo9bzFq3ZEiEWFf9s,2366
99
+ arize/embeddings/nlp_generators.py,sha256=6XLKEioredfOuhFQnUDDLvcTcOxUtxYJ086V2co3Pv0,4520
100
+ arize/embeddings/tabular_generators.py,sha256=K1K-QI4ucj3EZYvMZTjo79OxR8G9oifw2OP7LYabuYQ,6482
101
+ arize/embeddings/usecases.py,sha256=BAcEHTVF1abfe_Izf4eqCj5l-jPgLGs2phTfYVZ1nB0,850
102
+ arize/exceptions/__init__.py,sha256=-16kxctvh4CU_PAekPti-UI7ZTVcCkUrttwoXBa-Eq4,59
103
+ arize/exceptions/auth.py,sha256=ZCkJ15dW_3h7Fm4AawQaGJejrOEWn1wAXVoxBGA3XhA,749
104
+ arize/exceptions/base.py,sha256=0D5fqNul3SBPh2tvVAwocZwiBNspeTh7umI1CTqISw8,4400
105
+ arize/exceptions/models.py,sha256=Pe9QzdPl7hAWkJwHVm0QXBzmG2WFi2Xa_GNQOqGAJeM,1259
106
+ arize/exceptions/parameters.py,sha256=xbF38TNZI14PruYMor6DYVMB7uVhyusJfRPUn_YPHzU,15175
107
+ arize/exceptions/spaces.py,sha256=RZdXCnxkc-t5_jY2je7gVUDxaXhBQvKpXcUGXptO8mA,631
108
+ arize/exceptions/types.py,sha256=ks-4B2YpiVxHVopWUh4Gv_iM2h-LhdJ_zZDXtN3Ctc0,9468
109
+ arize/exceptions/values.py,sha256=rzT8sZbY2m2Vxc5vt5V-ZjsQyiGbxM0pxPi-bp9d-pU,27920
110
+ arize/experiments/__init__.py,sha256=Nd2m7unYRPN1QGFuj5GSaFxN25yAx_8epIE3Frjbgg0,74
111
+ arize/experiments/client.py,sha256=ViJBXeK-Nm37wCQTh4Vzj9SLqWqMBMNNBdMf64BwZys,26045
112
+ arize/experiments/functions.py,sha256=b51Dv1qk4oiDiJv6VZgpBhfdKlo4ff8FLTtH5ruEPOA,34675
113
+ arize/experiments/tracing.py,sha256=P3Q2DTUGNsRhvxRNAx_NXY30Id8y7cw9MV9piduSbB0,10207
114
+ arize/experiments/types.py,sha256=qwv-LV9DqfdlKwXc4SdL9p2QsI8pHoEy2_HCldzsdZs,14093
115
+ arize/experiments/evaluators/__init__.py,sha256=FUTfWRir8jaY8PC3pRHUy5m4RqrKRBPD1EJ4GYkIMLY,76
116
+ arize/experiments/evaluators/base.py,sha256=m9Gk2efWyssSYnZIdSJouB6CNx1KkqHjHUrRWft1L54,10981
117
+ arize/experiments/evaluators/exceptions.py,sha256=iqg5-OcGfRWY354OCcdmVC39cb3jEb-RO1LnVn7BD7M,376
118
+ arize/experiments/evaluators/executors.py,sha256=G6StVzZDd5MbXWENiCgFd1eDgNgMs6IWRc-0OtRyKvk,20722
119
+ arize/experiments/evaluators/rate_limiters.py,sha256=9PextZkLHljvY9t1yR4Lx_ryFW5Eht00irB87dxnWeA,13567
120
+ arize/experiments/evaluators/types.py,sha256=q_p5gaGiKvV14OgfDAI_Kn44Ribou3UfxizAJ9Bl5sM,4509
121
+ arize/experiments/evaluators/utils.py,sha256=nzl7DtucZoIQTwDpcLJUSlTbCsnyLNLFmwvovWB6GOg,7884
122
+ arize/models/__init__.py,sha256=jWGnNLghA0TkmR033NewriFUleH46zCTC4MCoGADE5c,68
123
+ arize/models/bounded_executor.py,sha256=BZF19icwV8UaRm8Otw8leiAgjDYultDDmvuSPXw2sx8,1669
124
+ arize/models/casting.py,sha256=VQNoYHbpRX-P_62e_AnOKO_3zwFsdnu7gLFoOIRxm80,14367
125
+ arize/models/client.py,sha256=thILrDn0nqPxx-vK-NWNafpDeAvFMUcGylwIA1eaQwk,58334
126
+ arize/models/proto.py,sha256=y9wjSVltjy87F6ytghWOkNo2cHd3Xd8PMOcc02f7pCM,19049
127
+ arize/models/stream_validation.py,sha256=hlDqm1DI2LTwfywENw5x-CLuts_7DPVk6pfRDSML-kE,8284
128
+ arize/models/batch_validation/__init__.py,sha256=mvn_TLQvgL6lwLvaTedzH0GGABrJViDkh77M38aFXQ4,49
129
+ arize/models/batch_validation/errors.py,sha256=5RdoJwXcN0r_U9H-vBTo_w_saeUyV8YeQD4eAAAT26M,61675
130
+ arize/models/batch_validation/validator.py,sha256=C5viO1eYo77zT9Jk7SmFptNmTS4xzvEr3bgv3y_xaXI,147724
131
+ arize/models/surrogate_explainer/__init__.py,sha256=jxFXugcjhip4Lg5M1ikrnq5xODwS1Z5Tt30NeVkCpH0,70
132
+ arize/models/surrogate_explainer/mimic.py,sha256=zC5v3x2DRf1HJ5XDXzAmjLmkJlWIj6fX7T9EBN19X0g,6191
133
+ arize/projects/__init__.py,sha256=hx29_muM9ZJxH5j518QJ88-_VVRAFymF5WLRvQVpDH8,64
134
+ arize/projects/client.py,sha256=yMs4dCoMtXGAdPmcCLDZyLUaCxbhbSbJ1a0kHLnecQ4,4149
135
+ arize/spans/__init__.py,sha256=rXRx4DshOoP9WmbVRUyYdM_QHtUmUTbfO2pZPkztKL0,57
136
+ arize/spans/client.py,sha256=_jikJwO_Ll8teJ5q_s1uKwxgRraQrs8UAs-mGmeRIKg,49127
137
+ arize/spans/columns.py,sha256=Sap8UrOeeFebxsI1LbelustuirAPmKrtjW8z3vHJVFk,13378
138
+ arize/spans/conversion.py,sha256=yI-0t-u2QDp-cvT7ESi3ap7wdwWd46lqXu-y9Qsy5S8,4626
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=Keqsbtas4siPATDpUFRTYiS2dXYjOcMAKpvTMgJV2ek,9308
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=v_FsnTueRtIaPyLzSMQarp6DNBe09Svu5UyJni7EgRw,6371
159
+ arize/spans/validation/spans/spans_validation.py,sha256=sULXzYMJ_INTiRlddJ7Z-iqTAszhIuMEmvaSPk-zrus,3485
160
+ arize/spans/validation/spans/value_validation.py,sha256=WI_sZhutTzTkHTYN7H5C0Ga0yaZiOxoIf2nFhSzvKtc,21398
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=-tsRs622ev-vxANx7ZdqY7bd0iYKorznC76SezQPv-A,1755
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/online_tasks/__init__.py,sha256=T7778_bgutP0U7h8e9NRPYfwBQSmHOi859M1K2fjpjw,213
169
+ arize/utils/online_tasks/dataframe_preprocessor.py,sha256=0aFlsi1SD4pQpvHOIGOkkRLQvRrHIedujZvkooEKgpE,9441
170
+ arize-8.0.0a23.dist-info/METADATA,sha256=VXXY1CY2_RBdPBR-JTdr4qh3IuRZsc8fOm57BmcshA4,28693
171
+ arize-8.0.0a23.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
172
+ arize-8.0.0a23.dist-info/licenses/LICENSE,sha256=Yseh419WQGiW16p8pS0MwNJyrAIrXSeW59aQXbijY2o,9723
173
+ arize-8.0.0a23.dist-info/licenses/NOTICE,sha256=V9Mdpy_w2tgo5GxgjpsZFTu2WcltLQIh6wBVFwBnJuY,550
174
+ arize-8.0.0a23.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)