arize 8.0.0a23__py3-none-any.whl → 8.0.0b1__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 (52) hide show
  1. arize/__init__.py +11 -10
  2. arize/_exporter/client.py +1 -1
  3. arize/_generated/api_client/__init__.py +0 -2
  4. arize/_generated/api_client/models/__init__.py +0 -1
  5. arize/_generated/api_client/models/datasets_create_request.py +2 -10
  6. arize/_generated/api_client/models/datasets_examples_insert_request.py +2 -10
  7. arize/_generated/api_client/test/test_datasets_create_request.py +2 -6
  8. arize/_generated/api_client/test/test_datasets_examples_insert_request.py +2 -6
  9. arize/_generated/api_client/test/test_datasets_examples_list200_response.py +2 -6
  10. arize/_generated/api_client/test/test_datasets_examples_update_request.py +2 -6
  11. arize/_generated/api_client/test/test_experiments_create_request.py +2 -6
  12. arize/_generated/api_client/test/test_experiments_runs_list200_response.py +2 -6
  13. arize/_generated/api_client_README.md +0 -1
  14. arize/client.py +47 -163
  15. arize/config.py +59 -100
  16. arize/datasets/client.py +11 -6
  17. arize/embeddings/nlp_generators.py +12 -6
  18. arize/embeddings/tabular_generators.py +14 -11
  19. arize/experiments/__init__.py +12 -0
  20. arize/experiments/client.py +13 -9
  21. arize/experiments/functions.py +6 -6
  22. arize/experiments/types.py +3 -3
  23. arize/{models → ml}/batch_validation/errors.py +2 -2
  24. arize/{models → ml}/batch_validation/validator.py +5 -3
  25. arize/{models → ml}/casting.py +42 -78
  26. arize/{models → ml}/client.py +19 -17
  27. arize/{models → ml}/proto.py +2 -2
  28. arize/{models → ml}/stream_validation.py +1 -1
  29. arize/{models → ml}/surrogate_explainer/mimic.py +6 -2
  30. arize/{types.py → ml/types.py} +99 -234
  31. arize/pre_releases.py +2 -1
  32. arize/projects/client.py +11 -6
  33. arize/spans/client.py +91 -86
  34. arize/spans/conversion.py +11 -4
  35. arize/spans/validation/common/value_validation.py +1 -1
  36. arize/spans/validation/spans/dataframe_form_validation.py +1 -1
  37. arize/spans/validation/spans/value_validation.py +2 -1
  38. arize/utils/dataframe.py +1 -1
  39. arize/utils/online_tasks/dataframe_preprocessor.py +5 -6
  40. arize/utils/types.py +105 -0
  41. arize/version.py +1 -1
  42. {arize-8.0.0a23.dist-info → arize-8.0.0b1.dist-info}/METADATA +56 -59
  43. {arize-8.0.0a23.dist-info → arize-8.0.0b1.dist-info}/RECORD +50 -51
  44. arize/_generated/api_client/models/primitive_value.py +0 -172
  45. arize/_generated/api_client/test/test_primitive_value.py +0 -50
  46. /arize/{models → ml}/__init__.py +0 -0
  47. /arize/{models → ml}/batch_validation/__init__.py +0 -0
  48. /arize/{models → ml}/bounded_executor.py +0 -0
  49. /arize/{models → ml}/surrogate_explainer/__init__.py +0 -0
  50. {arize-8.0.0a23.dist-info → arize-8.0.0b1.dist-info}/WHEEL +0 -0
  51. {arize-8.0.0a23.dist-info → arize-8.0.0b1.dist-info}/licenses/LICENSE +0 -0
  52. {arize-8.0.0a23.dist-info → arize-8.0.0b1.dist-info}/licenses/NOTICE +0 -0
@@ -1,50 +0,0 @@
1
- # coding: utf-8
2
-
3
- """
4
- Arize REST API
5
-
6
- API specification for the backend data server. The API is hosted globally at https://api.arize.com/v2 or in your own environment.
7
-
8
- The version of the OpenAPI document: 2.0.0
9
- Generated by OpenAPI Generator (https://openapi-generator.tech)
10
-
11
- Do not edit the class manually.
12
- """ # noqa: E501
13
-
14
-
15
- import unittest
16
-
17
- from arize._generated.api_client.models.primitive_value import PrimitiveValue
18
-
19
- class TestPrimitiveValue(unittest.TestCase):
20
- """PrimitiveValue unit test stubs"""
21
-
22
- def setUp(self):
23
- pass
24
-
25
- def tearDown(self):
26
- pass
27
-
28
- def make_instance(self, include_optional) -> PrimitiveValue:
29
- """Test PrimitiveValue
30
- include_optional is a boolean, when False only required
31
- params are included, when True both required and
32
- optional params are included """
33
- # uncomment below to create an instance of `PrimitiveValue`
34
- """
35
- model = PrimitiveValue()
36
- if include_optional:
37
- return PrimitiveValue(
38
- )
39
- else:
40
- return PrimitiveValue(
41
- )
42
- """
43
-
44
- def testPrimitiveValue(self):
45
- """Test PrimitiveValue"""
46
- # inst_req_only = self.make_instance(include_optional=False)
47
- # inst_req_and_optional = self.make_instance(include_optional=True)
48
-
49
- if __name__ == '__main__':
50
- unittest.main()
File without changes
File without changes
File without changes
File without changes