arize 8.0.0a4__py3-none-any.whl → 8.0.0a6__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.
arize/version.py CHANGED
@@ -1 +1 @@
1
- __version__ = "8.0.0a4"
1
+ __version__ = "8.0.0a6"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: arize
3
- Version: 8.0.0a4
3
+ Version: 8.0.0a6
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
@@ -65,7 +65,24 @@ Description-Content-Type: text/markdown
65
65
 
66
66
  ---
67
67
 
68
- ## Overview
68
+ # Table of Contents <!-- omit in toc -->
69
+
70
+ - [Overview](#overview)
71
+ - [Key Features](#key-features)
72
+ - [Installation](#installation)
73
+ - [Usage](#usage)
74
+ - [Instrumentation](#instrumentation)
75
+ - [Operations on Spans](#operations-on-spans)
76
+ - [Logging spans](#logging-spans)
77
+ - [Update spans Evaluations, Annotations, and Metadata](#update-spans-evaluations-annotations-and-metadata)
78
+ - [Exporting spans](#exporting-spans)
79
+ - [Operations on ML Models](#operations-on-ml-models)
80
+ - [Stream log ML Data for a Classification use-case](#stream-log-ml-data-for-a-classification-use-case)
81
+ - [Log a batch of ML Data for a Object Detection use-case](#log-a-batch-of-ml-data-for-a-object-detection-use-case)
82
+ - [Exporting ML Data](#exporting-ml-data)
83
+ - [Community](#community)
84
+
85
+ # Overview
69
86
 
70
87
  A helper package to interact with Arize AI APIs.
71
88
 
@@ -78,7 +95,7 @@ Arize has both Enterprise and OSS products to support this goal:
78
95
 
79
96
  We log over 1 trillion inferences and spans, 10 million evaluation runs, and 2 million OSS downloads every month.
80
97
 
81
- ## Key Features
98
+ # Key Features
82
99
  - [**_Tracing_**](https://docs.arize.com/arize/observe/tracing) - Trace your LLM application's runtime using OpenTelemetry-based instrumentation.
83
100
  - [**_Evaluation_**](https://docs.arize.com/arize/evaluate/online-evals) - Leverage LLMs to benchmark your application's performance using response and retrieval evals.
84
101
  - [**_Datasets_**](https://docs.arize.com/arize/develop/datasets) - Create versioned datasets of examples for experimentation, evaluation, and fine-tuning.
@@ -86,7 +103,7 @@ We log over 1 trillion inferences and spans, 10 million evaluation runs, and 2 m
86
103
  - [**_Playground_**](https://docs.arize.com/arize/develop/prompt-playground)- Optimize prompts, compare models, adjust parameters, and replay traced LLM calls.
87
104
  - [**_Prompt Management_**](https://docs.arize.com/arize/develop/prompt-hub)- Manage and test prompt changes systematically using version control, tagging, and experimentation.
88
105
 
89
- ## Installation
106
+ # Installation
90
107
 
91
108
  Install Arize (version 8 is currently under alpha release) via `pip` or `conda`:
92
109
 
@@ -99,9 +116,9 @@ where `x` denotes the specific alpha release. Install the `arize-otel` package f
99
116
  pip install arize-otel
100
117
  ```
101
118
 
102
- ## Usage
119
+ # Usage
103
120
 
104
- ### Instrumentation
121
+ ## Instrumentation
105
122
 
106
123
  See [arize-otel in PyPI](https://pypi.org/project/arize-otel/):
107
124
 
@@ -120,13 +137,13 @@ tracer_provider = register(
120
137
  OpenAIInstrumentor().instrument(tracer_provider=tracer_provider)
121
138
  ```
122
139
 
123
- ### Operations on Spans
140
+ ## Operations on Spans
124
141
 
125
142
  Use `arize.spans` to interact with spans: log spans into Arize, update the span's evaluations, annotations and metadata in bulk.
126
143
 
127
144
  > **WARNING**: This is currently under an alpha release. Install with `pip install arize==8.0.0ax` where the `x` denotes the specific alpha version. Check the [pre-releases](https://pypi.org/project/arize/#history) page in PyPI.
128
145
 
129
- #### Logging spans
146
+ ### Logging spans
130
147
 
131
148
  ```python
132
149
  from arize import ArizeClient
@@ -143,7 +160,7 @@ client.spans.log(
143
160
  )
144
161
  ```
145
162
 
146
- #### Update spans Evaluations, Annotations, and Metadata
163
+ ### Update spans Evaluations, Annotations, and Metadata
147
164
 
148
165
  ```python
149
166
  from arize import ArizeClient
@@ -172,7 +189,7 @@ client.spans.update_metadata(
172
189
  )
173
190
  ```
174
191
 
175
- #### Exporting spans
192
+ ### Exporting spans
176
193
 
177
194
  Use the `export_to_df` or `export_to_parquet` to export large amounts of spans from Arize.
178
195
 
@@ -196,13 +213,13 @@ df = client.spans.export_to_df(
196
213
  )
197
214
  ```
198
215
 
199
- ### Operations on ML Models
216
+ ## Operations on ML Models
200
217
 
201
218
  Use `arize.models` to interact with ML models: log ML data (traininv, validation, production) into Arize, either streaming or in batches.
202
219
 
203
220
  > **WARNING**: This is currently under an alpha release. Install with `pip install arize==8.0.0ax` where the `x` denotes the specific alpha version. Check the [pre-releases](https://pypi.org/project/arize/#history) page in PyPI.
204
221
 
205
- #### Stream log ML Data for a Classification use-case
222
+ ### Stream log ML Data for a Classification use-case
206
223
 
207
224
  ```python
208
225
  from arize import ArizeClient
@@ -227,7 +244,7 @@ response = client.models.log_stream(
227
244
  )
228
245
  ```
229
246
 
230
- #### Log a batch of ML Data for a Classification use-case
247
+ ### Log a batch of ML Data for a Object Detection use-case
231
248
 
232
249
  ```python
233
250
  from arize import ArizeClient
@@ -278,7 +295,7 @@ response = client.models.log_batch(
278
295
  )
279
296
  ```
280
297
 
281
- #### Exporting ML Data
298
+ ### Exporting ML Data
282
299
 
283
300
  Use the `export_to_df` or `export_to_parquet` to export large amounts of spans from Arize.
284
301
 
@@ -305,7 +322,7 @@ df = client.models.export_to_df(
305
322
  )
306
323
  ```
307
324
 
308
- ## Community
325
+ # Community
309
326
 
310
327
  Join our community to connect with thousands of AI builders.
311
328
 
@@ -4,7 +4,7 @@ arize/client.py,sha256=ntSYQSzM6MrvcYDxV-lFF-yoxoPjjCvBHKoN-2k1BGg,5688
4
4
  arize/config.py,sha256=iynVEZhrOPdTNJTQ_KQmwKOPiwL0LfEP8AUIDYW86Xw,5801
5
5
  arize/logging.py,sha256=2vwdta2-kR78GeBFGK2vpk51rQ2d06HoKzuARI9qFQk,7317
6
6
  arize/types.py,sha256=z1yg5-brmTD4kVHDmmTVkYke53JpusXXeOOpdQw7rYg,69508
7
- arize/version.py,sha256=_tySepGbCqg_WMxEmmCuYp-OGXCcWr_Nn7pmjEpXZx8,24
7
+ arize/version.py,sha256=ych3dbau15fEnErUtcT46Q7eVY4K08pcrOdKtqDJyeE,24
8
8
  arize/_exporter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
9
  arize/_exporter/client.py,sha256=eAxJX1sUfdpLrtaQ0ynMTd5jI37JOp9fbl3NWp4WFEA,15216
10
10
  arize/_exporter/validation.py,sha256=6ROu5p7uaolxQ93lO_Eiwv9NVw_uyi3E5T--C5Klo5Q,1021
@@ -107,7 +107,7 @@ arize/utils/arrow.py,sha256=J7uwMsVR9K85myWcnKHb_pUz2H8Timk56U9gV2t5XnA,5477
107
107
  arize/utils/casting.py,sha256=KUrPUQN6qJEVe39nxbr0T-0GjAJLHjf4xWuzV71QezI,12468
108
108
  arize/utils/dataframe.py,sha256=I0FloPgNiqlKga32tMOvTE70598QA8Hhrgf-6zjYMAM,1120
109
109
  arize/utils/proto.py,sha256=9vLo53INYjdF78ffjm3E48jFwK6LbPD2FfKei7VaDy8,35477
110
- arize-8.0.0a4.dist-info/METADATA,sha256=KRy-y9Zf3bDwE_210OVOIBjJJnB1K59VdRwbHZUnq98,11573
111
- arize-8.0.0a4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
112
- arize-8.0.0a4.dist-info/licenses/LICENSE.md,sha256=8vLN8Gms62NCBorxIv9MUvuK7myueb6_-dhXHPmm4H0,1479
113
- arize-8.0.0a4.dist-info/RECORD,,
110
+ arize-8.0.0a6.dist-info/METADATA,sha256=U_NiQVrKYY9UfCdXpjTtqAgg8jp8jmhyHUKV8aTrKCE,12346
111
+ arize-8.0.0a6.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
112
+ arize-8.0.0a6.dist-info/licenses/LICENSE.md,sha256=8vLN8Gms62NCBorxIv9MUvuK7myueb6_-dhXHPmm4H0,1479
113
+ arize-8.0.0a6.dist-info/RECORD,,