arize-phoenix 11.28.0__py3-none-any.whl → 11.30.0__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.
Potentially problematic release.
This version of arize-phoenix might be problematic. Click here for more details.
- {arize_phoenix-11.28.0.dist-info → arize_phoenix-11.30.0.dist-info}/METADATA +3 -2
- {arize_phoenix-11.28.0.dist-info → arize_phoenix-11.30.0.dist-info}/RECORD +23 -22
- phoenix/server/api/dataloaders/average_experiment_run_latency.py +17 -24
- phoenix/server/api/dataloaders/document_evaluations.py +3 -3
- phoenix/server/api/dataloaders/experiment_annotation_summaries.py +88 -34
- phoenix/server/api/dataloaders/experiment_error_rates.py +21 -28
- phoenix/server/api/routers/v1/__init__.py +2 -0
- phoenix/server/api/routers/v1/documents.py +175 -0
- phoenix/server/api/routers/v1/spans.py +5 -3
- phoenix/server/api/routers/v1/traces.py +5 -3
- phoenix/server/api/types/Dataset.py +69 -21
- phoenix/server/api/types/Evaluation.py +5 -4
- phoenix/server/api/types/Experiment.py +4 -5
- phoenix/server/api/types/Span.py +2 -2
- phoenix/server/static/.vite/manifest.json +9 -9
- phoenix/server/static/assets/{components-C3HQDu_r.js → components-BBwXqJXQ.js} +4 -3
- phoenix/server/static/assets/{index-C-sjZRYC.js → index-C_gU3x10.js} +1 -1
- phoenix/server/static/assets/{pages-DvrxSPg3.js → pages-YmQb55Uo.js} +399 -392
- phoenix/version.py +1 -1
- {arize_phoenix-11.28.0.dist-info → arize_phoenix-11.30.0.dist-info}/WHEEL +0 -0
- {arize_phoenix-11.28.0.dist-info → arize_phoenix-11.30.0.dist-info}/entry_points.txt +0 -0
- {arize_phoenix-11.28.0.dist-info → arize_phoenix-11.30.0.dist-info}/licenses/IP_NOTICE +0 -0
- {arize_phoenix-11.28.0.dist-info → arize_phoenix-11.30.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -272,15 +272,53 @@ class Dataset(Node):
|
|
|
272
272
|
self, info: Info[Context, None]
|
|
273
273
|
) -> list[ExperimentAnnotationSummary]:
|
|
274
274
|
dataset_id = self.id_attr
|
|
275
|
-
|
|
275
|
+
repetition_mean_scores_by_example_subquery = (
|
|
276
276
|
select(
|
|
277
|
+
models.ExperimentRunAnnotation.name.label("annotation_name"),
|
|
278
|
+
func.avg(models.ExperimentRunAnnotation.score).label("mean_repetition_score"),
|
|
279
|
+
)
|
|
280
|
+
.select_from(models.ExperimentRunAnnotation)
|
|
281
|
+
.join(
|
|
282
|
+
models.ExperimentRun,
|
|
283
|
+
models.ExperimentRunAnnotation.experiment_run_id == models.ExperimentRun.id,
|
|
284
|
+
)
|
|
285
|
+
.join(
|
|
286
|
+
models.Experiment,
|
|
287
|
+
models.ExperimentRun.experiment_id == models.Experiment.id,
|
|
288
|
+
)
|
|
289
|
+
.where(models.Experiment.dataset_id == dataset_id)
|
|
290
|
+
.group_by(
|
|
291
|
+
models.ExperimentRun.dataset_example_id,
|
|
277
292
|
models.ExperimentRunAnnotation.name,
|
|
278
|
-
func.min(models.ExperimentRunAnnotation.score),
|
|
279
|
-
func.max(models.ExperimentRunAnnotation.score),
|
|
280
|
-
func.avg(models.ExperimentRunAnnotation.score),
|
|
281
|
-
func.count(),
|
|
282
|
-
func.count(models.ExperimentRunAnnotation.error),
|
|
283
293
|
)
|
|
294
|
+
.subquery()
|
|
295
|
+
.alias("repetition_mean_scores_by_example")
|
|
296
|
+
)
|
|
297
|
+
repetition_mean_scores_subquery = (
|
|
298
|
+
select(
|
|
299
|
+
repetition_mean_scores_by_example_subquery.c.annotation_name.label(
|
|
300
|
+
"annotation_name"
|
|
301
|
+
),
|
|
302
|
+
func.avg(repetition_mean_scores_by_example_subquery.c.mean_repetition_score).label(
|
|
303
|
+
"mean_score"
|
|
304
|
+
),
|
|
305
|
+
)
|
|
306
|
+
.select_from(repetition_mean_scores_by_example_subquery)
|
|
307
|
+
.group_by(
|
|
308
|
+
repetition_mean_scores_by_example_subquery.c.annotation_name,
|
|
309
|
+
)
|
|
310
|
+
.subquery()
|
|
311
|
+
.alias("repetition_mean_scores")
|
|
312
|
+
)
|
|
313
|
+
repetitions_subquery = (
|
|
314
|
+
select(
|
|
315
|
+
models.ExperimentRunAnnotation.name.label("annotation_name"),
|
|
316
|
+
func.min(models.ExperimentRunAnnotation.score).label("min_score"),
|
|
317
|
+
func.max(models.ExperimentRunAnnotation.score).label("max_score"),
|
|
318
|
+
func.count().label("count"),
|
|
319
|
+
func.count(models.ExperimentRunAnnotation.error).label("error_count"),
|
|
320
|
+
)
|
|
321
|
+
.select_from(models.ExperimentRunAnnotation)
|
|
284
322
|
.join(
|
|
285
323
|
models.ExperimentRun,
|
|
286
324
|
models.ExperimentRunAnnotation.experiment_run_id == models.ExperimentRun.id,
|
|
@@ -291,26 +329,36 @@ class Dataset(Node):
|
|
|
291
329
|
)
|
|
292
330
|
.where(models.Experiment.dataset_id == dataset_id)
|
|
293
331
|
.group_by(models.ExperimentRunAnnotation.name)
|
|
294
|
-
.
|
|
332
|
+
.subquery()
|
|
333
|
+
)
|
|
334
|
+
run_scores_query = (
|
|
335
|
+
select(
|
|
336
|
+
repetition_mean_scores_subquery.c.annotation_name.label("annotation_name"),
|
|
337
|
+
repetition_mean_scores_subquery.c.mean_score.label("mean_score"),
|
|
338
|
+
repetitions_subquery.c.min_score.label("min_score"),
|
|
339
|
+
repetitions_subquery.c.max_score.label("max_score"),
|
|
340
|
+
repetitions_subquery.c.count.label("count_"),
|
|
341
|
+
repetitions_subquery.c.error_count.label("error_count"),
|
|
342
|
+
)
|
|
343
|
+
.select_from(repetition_mean_scores_subquery)
|
|
344
|
+
.join(
|
|
345
|
+
repetitions_subquery,
|
|
346
|
+
repetitions_subquery.c.annotation_name
|
|
347
|
+
== repetition_mean_scores_subquery.c.annotation_name,
|
|
348
|
+
)
|
|
349
|
+
.order_by(repetition_mean_scores_subquery.c.annotation_name)
|
|
295
350
|
)
|
|
296
351
|
async with info.context.db() as session:
|
|
297
352
|
return [
|
|
298
353
|
ExperimentAnnotationSummary(
|
|
299
|
-
annotation_name=annotation_name,
|
|
300
|
-
min_score=min_score,
|
|
301
|
-
max_score=max_score,
|
|
302
|
-
mean_score=mean_score,
|
|
303
|
-
count=count_,
|
|
304
|
-
error_count=error_count,
|
|
354
|
+
annotation_name=scores_tuple.annotation_name,
|
|
355
|
+
min_score=scores_tuple.min_score,
|
|
356
|
+
max_score=scores_tuple.max_score,
|
|
357
|
+
mean_score=scores_tuple.mean_score,
|
|
358
|
+
count=scores_tuple.count_,
|
|
359
|
+
error_count=scores_tuple.error_count,
|
|
305
360
|
)
|
|
306
|
-
async for (
|
|
307
|
-
annotation_name,
|
|
308
|
-
min_score,
|
|
309
|
-
max_score,
|
|
310
|
-
mean_score,
|
|
311
|
-
count_,
|
|
312
|
-
error_count,
|
|
313
|
-
) in await session.stream(query)
|
|
361
|
+
async for scores_tuple in await session.stream(run_scores_query)
|
|
314
362
|
]
|
|
315
363
|
|
|
316
364
|
@strawberry.field
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import strawberry
|
|
2
2
|
|
|
3
|
-
from phoenix.db.models import DocumentAnnotation
|
|
3
|
+
from phoenix.db.models import DocumentAnnotation as DBDocumentAnnotation
|
|
4
|
+
from phoenix.db.models import TraceAnnotation
|
|
4
5
|
|
|
5
6
|
from .Annotation import Annotation
|
|
6
7
|
|
|
@@ -20,15 +21,15 @@ class TraceEvaluation(Annotation):
|
|
|
20
21
|
|
|
21
22
|
|
|
22
23
|
@strawberry.type
|
|
23
|
-
class
|
|
24
|
+
class DocumentAnnotation(Annotation):
|
|
24
25
|
document_position: int = strawberry.field(
|
|
25
26
|
description="The zero-based index among retrieved documents, which "
|
|
26
27
|
"is collected as a list (even when ordering is not inherently meaningful)."
|
|
27
28
|
)
|
|
28
29
|
|
|
29
30
|
@staticmethod
|
|
30
|
-
def from_sql_document_annotation(annotation:
|
|
31
|
-
return
|
|
31
|
+
def from_sql_document_annotation(annotation: DBDocumentAnnotation) -> "DocumentAnnotation":
|
|
32
|
+
return DocumentAnnotation(
|
|
32
33
|
name=annotation.name,
|
|
33
34
|
score=annotation.score,
|
|
34
35
|
label=annotation.label,
|
|
@@ -4,7 +4,6 @@ from typing import ClassVar, Optional
|
|
|
4
4
|
import strawberry
|
|
5
5
|
from sqlalchemy import func, select
|
|
6
6
|
from sqlalchemy.orm import joinedload
|
|
7
|
-
from sqlalchemy.sql.functions import coalesce
|
|
8
7
|
from strawberry import UNSET, Private
|
|
9
8
|
from strawberry.relay import Connection, Node, NodeID
|
|
10
9
|
from strawberry.scalars import JSON
|
|
@@ -110,10 +109,10 @@ class Experiment(Node):
|
|
|
110
109
|
|
|
111
110
|
@strawberry.field
|
|
112
111
|
async def average_run_latency_ms(self, info: Info[Context, None]) -> Optional[float]:
|
|
113
|
-
|
|
112
|
+
latency_ms = await info.context.data_loaders.average_experiment_run_latency.load(
|
|
114
113
|
self.id_attr
|
|
115
114
|
)
|
|
116
|
-
return
|
|
115
|
+
return latency_ms
|
|
117
116
|
|
|
118
117
|
@strawberry.field
|
|
119
118
|
async def project(self, info: Info[Context, None]) -> Optional[Project]:
|
|
@@ -165,8 +164,8 @@ class Experiment(Node):
|
|
|
165
164
|
select(
|
|
166
165
|
models.SpanCostDetail.token_type,
|
|
167
166
|
models.SpanCostDetail.is_prompt,
|
|
168
|
-
|
|
169
|
-
|
|
167
|
+
func.sum(models.SpanCostDetail.cost).label("cost"),
|
|
168
|
+
func.sum(models.SpanCostDetail.tokens).label("tokens"),
|
|
170
169
|
)
|
|
171
170
|
.select_from(models.SpanCostDetail)
|
|
172
171
|
.join(models.SpanCost, models.SpanCostDetail.span_cost_id == models.SpanCost.id)
|
phoenix/server/api/types/Span.py
CHANGED
|
@@ -35,7 +35,7 @@ from phoenix.server.api.input_types.SpanAnnotationSort import (
|
|
|
35
35
|
from phoenix.server.api.types.AnnotationSummary import AnnotationSummary
|
|
36
36
|
from phoenix.server.api.types.CostBreakdown import CostBreakdown
|
|
37
37
|
from phoenix.server.api.types.DocumentRetrievalMetrics import DocumentRetrievalMetrics
|
|
38
|
-
from phoenix.server.api.types.Evaluation import
|
|
38
|
+
from phoenix.server.api.types.Evaluation import DocumentAnnotation
|
|
39
39
|
from phoenix.server.api.types.ExampleRevisionInterface import ExampleRevision
|
|
40
40
|
from phoenix.server.api.types.GenerativeProvider import GenerativeProvider
|
|
41
41
|
from phoenix.server.api.types.MimeType import MimeType
|
|
@@ -638,7 +638,7 @@ class Span(Node):
|
|
|
638
638
|
async def document_evaluations(
|
|
639
639
|
self,
|
|
640
640
|
info: Info[Context, None],
|
|
641
|
-
) -> list[
|
|
641
|
+
) -> list[DocumentAnnotation]:
|
|
642
642
|
return await info.context.data_loaders.document_evaluations.load(self.span_rowid)
|
|
643
643
|
|
|
644
644
|
@strawberry.field(
|
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
{
|
|
2
|
-
"_components-
|
|
3
|
-
"file": "assets/components-
|
|
2
|
+
"_components-BBwXqJXQ.js": {
|
|
3
|
+
"file": "assets/components-BBwXqJXQ.js",
|
|
4
4
|
"name": "components",
|
|
5
5
|
"imports": [
|
|
6
6
|
"_vendor-RdRDaQiR.js",
|
|
7
|
-
"_pages-
|
|
7
|
+
"_pages-YmQb55Uo.js",
|
|
8
8
|
"_vendor-arizeai-DsYDNOqt.js",
|
|
9
9
|
"_vendor-codemirror-BzJDUbEx.js",
|
|
10
10
|
"_vendor-three-BLWp5bic.js"
|
|
11
11
|
]
|
|
12
12
|
},
|
|
13
|
-
"_pages-
|
|
14
|
-
"file": "assets/pages-
|
|
13
|
+
"_pages-YmQb55Uo.js": {
|
|
14
|
+
"file": "assets/pages-YmQb55Uo.js",
|
|
15
15
|
"name": "pages",
|
|
16
16
|
"imports": [
|
|
17
17
|
"_vendor-RdRDaQiR.js",
|
|
18
18
|
"_vendor-arizeai-DsYDNOqt.js",
|
|
19
|
-
"_components-
|
|
19
|
+
"_components-BBwXqJXQ.js",
|
|
20
20
|
"_vendor-codemirror-BzJDUbEx.js",
|
|
21
21
|
"_vendor-recharts-BTHn5Y2R.js"
|
|
22
22
|
]
|
|
@@ -75,15 +75,15 @@
|
|
|
75
75
|
"name": "vendor-three"
|
|
76
76
|
},
|
|
77
77
|
"index.tsx": {
|
|
78
|
-
"file": "assets/index-
|
|
78
|
+
"file": "assets/index-C_gU3x10.js",
|
|
79
79
|
"name": "index",
|
|
80
80
|
"src": "index.tsx",
|
|
81
81
|
"isEntry": true,
|
|
82
82
|
"imports": [
|
|
83
83
|
"_vendor-RdRDaQiR.js",
|
|
84
84
|
"_vendor-arizeai-DsYDNOqt.js",
|
|
85
|
-
"_pages-
|
|
86
|
-
"_components-
|
|
85
|
+
"_pages-YmQb55Uo.js",
|
|
86
|
+
"_components-BBwXqJXQ.js",
|
|
87
87
|
"_vendor-three-BLWp5bic.js",
|
|
88
88
|
"_vendor-codemirror-BzJDUbEx.js",
|
|
89
89
|
"_vendor-shiki-BAcocHFl.js",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import{r as p,j as e,u as st,a as rn,e as qn,s as xa,b as Ta,c as zn,d as Za,f as So,g as Xe,h as xo,i as To,k as Ua,l as s,m as bn,p as ca,n as Nn,R as Ge,o as E,q as ct,t as Fn,v as Ao,C as na,w as Io,x as Mo,L as _l,y as Dl,z as Kl,A as Oe,B as tn,D as W,E as zo,F as cn,G as Fo,H as Eo,I as $e,J as an,K as j,M as _o,N as oe,O as yn,P as Dn,Q as Pl,S as xn,T as da,U as m,V as Vl,$ as N,W as Do,X as V,Y as Ol,Z as Rl,_ as Ae,a0 as Ko,a1 as Po,a2 as vn,a3 as Vo,a4 as B,a5 as gn,a6 as P,a7 as G,a8 as ee,a9 as Nl,aa as $l,ab as Oo,ac as Bl,ad as Ro,ae as Hl,af as No,ag as $o,ah as jl,ai as Bo,aj as Ho,ak as jo,al as Zl,am as Zo,an as Uo,ao as Go,ap as Te,aq as Ul,ar as Be,as as Qo,at as Wo,au as Qe,av as Ga,aw as Qa,ax as Wa,ay as U,az as Cn,aA as Ut,aB as Gl,aC as Ql,aD as qo,aE as Xo,aF as Yo,aG as Jo,aH as e1,aI as n1,aJ as Wl,aK as a1,aL as t1,aM as l1,aN as i1,aO as r1,aP as o1,aQ as s1,aR as dt,aS as te,aT as c1,aU as d1,aV as ql,aW as u1,aX as g1,aY as Xl,aZ as Ke,a_ as Yl,a$ as Gt,b0 as m1,b1 as Jl,b2 as pe,b3 as p1,b4 as ut,b5 as h1,b6 as f1,b7 as b1,b8 as y1,b9 as Qt,ba as ei,bb as v1,bc as C1,bd as k1,be as gt,bf as L1,bg as w1,bh as ua,bi as S1,bj as x1,bk as T1,bl as ni,bm as A1,bn as I1,bo as M1,bp as z1,bq as F1,br as E1,bs as _1,bt as Wt,bu as D1,bv as Aa,bw as K1,bx as P1,by as V1,bz as O1,bA as R1,bB as N1,bC as $1,bD as B1,bE as H1,bF as Xn}from"./vendor-RdRDaQiR.js";import{a as qt,R as j1,b as Z1,c as U1,m as G1,T as Q1,A as W1,S as q1,d as X1,e as Y1,f as J1,u as es}from"./pages-
|
|
1
|
+
import{r as p,j as e,u as st,a as rn,e as qn,s as xa,b as Ta,c as zn,d as Za,f as So,g as Xe,h as xo,i as To,k as Ua,l as s,m as bn,p as ca,n as Nn,R as Ge,o as E,q as ct,t as Fn,v as Ao,C as na,w as Io,x as Mo,L as _l,y as Dl,z as Kl,A as Oe,B as tn,D as W,E as zo,F as cn,G as Fo,H as Eo,I as $e,J as an,K as j,M as _o,N as oe,O as yn,P as Dn,Q as Pl,S as xn,T as da,U as m,V as Vl,$ as N,W as Do,X as V,Y as Ol,Z as Rl,_ as Ae,a0 as Ko,a1 as Po,a2 as vn,a3 as Vo,a4 as B,a5 as gn,a6 as P,a7 as G,a8 as ee,a9 as Nl,aa as $l,ab as Oo,ac as Bl,ad as Ro,ae as Hl,af as No,ag as $o,ah as jl,ai as Bo,aj as Ho,ak as jo,al as Zl,am as Zo,an as Uo,ao as Go,ap as Te,aq as Ul,ar as Be,as as Qo,at as Wo,au as Qe,av as Ga,aw as Qa,ax as Wa,ay as U,az as Cn,aA as Ut,aB as Gl,aC as Ql,aD as qo,aE as Xo,aF as Yo,aG as Jo,aH as e1,aI as n1,aJ as Wl,aK as a1,aL as t1,aM as l1,aN as i1,aO as r1,aP as o1,aQ as s1,aR as dt,aS as te,aT as c1,aU as d1,aV as ql,aW as u1,aX as g1,aY as Xl,aZ as Ke,a_ as Yl,a$ as Gt,b0 as m1,b1 as Jl,b2 as pe,b3 as p1,b4 as ut,b5 as h1,b6 as f1,b7 as b1,b8 as y1,b9 as Qt,ba as ei,bb as v1,bc as C1,bd as k1,be as gt,bf as L1,bg as w1,bh as ua,bi as S1,bj as x1,bk as T1,bl as ni,bm as A1,bn as I1,bo as M1,bp as z1,bq as F1,br as E1,bs as _1,bt as Wt,bu as D1,bv as Aa,bw as K1,bx as P1,by as V1,bz as O1,bA as R1,bB as N1,bC as $1,bD as B1,bE as H1,bF as Xn}from"./vendor-RdRDaQiR.js";import{a as qt,R as j1,b as Z1,c as U1,m as G1,T as Q1,A as W1,S as q1,d as X1,e as Y1,f as J1,u as es}from"./pages-YmQb55Uo.js";import{u as ns,_ as as,a as ts,F as ai,I as ls,b as is,c as rs,d as os,e as ss,f as cs,g as ds,P as us,h as gs,i as ms,j as ps,T as hs,k as fs}from"./vendor-arizeai-DsYDNOqt.js";import{L as ti,a as li,j as ii,E as mt,k as ri,d as oi,l as qa,b as si,h as bs,c as ys,e as vs,f as Cs,g as ks,i as Ls,s as ws,m as $n,n as Bn,R as Hn,p as Ss,o as xs}from"./vendor-codemirror-BzJDUbEx.js";import{V as Ts}from"./vendor-three-BLWp5bic.js";const ci=function(){var n={defaultValue:null,kind:"LocalArgument",name:"clusters"},a={defaultValue:null,kind:"LocalArgument",name:"dataQualityMetricColumnName"},t={defaultValue:null,kind:"LocalArgument",name:"fetchDataQualityMetric"},l={defaultValue:null,kind:"LocalArgument",name:"fetchPerformanceMetric"},i={defaultValue:null,kind:"LocalArgument",name:"performanceMetric"},r=[{alias:null,args:null,kind:"ScalarField",name:"primaryValue",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"referenceValue",storageKey:null}],o=[{alias:null,args:[{kind:"Variable",name:"clusters",variableName:"clusters"}],concreteType:"Cluster",kind:"LinkedField",name:"clusters",plural:!0,selections:[{alias:null,args:null,kind:"ScalarField",name:"id",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"eventIds",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"driftRatio",storageKey:null},{alias:null,args:null,kind:"ScalarField",name:"primaryToCorpusRatio",storageKey:null},{condition:"fetchDataQualityMetric",kind:"Condition",passingValue:!0,selections:[{alias:null,args:[{fields:[{kind:"Variable",name:"columnName",variableName:"dataQualityMetricColumnName"},{kind:"Literal",name:"metric",value:"mean"}],kind:"ObjectValue",name:"metric"}],concreteType:"DatasetValues",kind:"LinkedField",name:"dataQualityMetric",plural:!1,selections:r,storageKey:null}]},{condition:"fetchPerformanceMetric",kind:"Condition",passingValue:!0,selections:[{alias:null,args:[{fields:[{kind:"Variable",name:"metric",variableName:"performanceMetric"}],kind:"ObjectValue",name:"metric"}],concreteType:"DatasetValues",kind:"LinkedField",name:"performanceMetric",plural:!1,selections:r,storageKey:null}]}],storageKey:null}];return{fragment:{argumentDefinitions:[n,a,t,l,i],kind:"Fragment",metadata:null,name:"pointCloudStore_clusterMetricsQuery",selections:o,type:"Query",abstractKey:null},kind:"Request",operation:{argumentDefinitions:[n,t,a,l,i],kind:"Operation",name:"pointCloudStore_clusterMetricsQuery",selections:o},params:{cacheID:"86666967012812887ac0a0149d2d2535",id:null,metadata:{},name:"pointCloudStore_clusterMetricsQuery",operationKind:"query",text:`query pointCloudStore_clusterMetricsQuery(
|
|
2
2
|
$clusters: [ClusterInput!]!
|
|
3
3
|
$fetchDataQualityMetric: Boolean!
|
|
4
4
|
$dataQualityMetricColumnName: String
|
|
@@ -2431,10 +2431,11 @@ fragment ViewerContext_viewer on Query {
|
|
|
2431
2431
|
}
|
|
2432
2432
|
`,u3=m`
|
|
2433
2433
|
inline-size: var(--ac-global-dimension-size-2400);
|
|
2434
|
+
height: var(--ac-global-dimension-size-75);
|
|
2434
2435
|
|
|
2435
2436
|
.progress-bar__track {
|
|
2436
2437
|
forced-color-adjust: none;
|
|
2437
|
-
height:
|
|
2438
|
+
height: 100%;
|
|
2438
2439
|
border-radius: 3px;
|
|
2439
2440
|
overflow: hidden;
|
|
2440
2441
|
background-color: var(
|
|
@@ -2447,7 +2448,7 @@ fragment ViewerContext_viewer on Query {
|
|
|
2447
2448
|
background: var(--mod-barloader-fill-color, var(--ac-global-color-primary));
|
|
2448
2449
|
height: 100%;
|
|
2449
2450
|
}
|
|
2450
|
-
`;function g3(n,a){const{isIndeterminate:t=!1,value:l,size:i="M"}=n;return e(ql,{...n,"data-size":i,"data-indeterminate":t||void 0,css:d3,ref:a,style:!t&&l!=null?{"--progress-circle-value":l}:void 0,children:s("svg",{className:"progress-circle__svg",children:[e("circle",{className:"progress-circle__background"}),e("circle",{className:"progress-circle__arc"})]})})}const ar=p.forwardRef(g3);function m3({width:n,...
|
|
2451
|
+
`;function g3(n,a){const{isIndeterminate:t=!1,value:l,size:i="M"}=n;return e(ql,{...n,"data-size":i,"data-indeterminate":t||void 0,css:d3,ref:a,style:!t&&l!=null?{"--progress-circle-value":l}:void 0,children:s("svg",{className:"progress-circle__svg",children:[e("circle",{className:"progress-circle__background"}),e("circle",{className:"progress-circle__arc"})]})})}const ar=p.forwardRef(g3);function m3({width:n,height:a,...t},l){return e(ql,{...t,ref:l,css:u3,style:{width:n,height:a},children:({percentage:i})=>e("div",{className:"progress-bar__track",children:e("div",{className:"progress-bar__fill",style:{width:i+"%"}})})})}const cg=p.forwardRef(m3),p3=m`
|
|
2451
2452
|
list-style: none;
|
|
2452
2453
|
padding: 0;
|
|
2453
2454
|
margin: 0;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import{U as g,j as o,c_ as f,eD as h,eE as v,eF as y,l as r,cl as x,eG as a,r as z,o as w,eH as P}from"./vendor-RdRDaQiR.js";import{r as k,s as S}from"./vendor-arizeai-DsYDNOqt.js";import{L,g as C,r as R,h as j,i as E,F as I,j as D,P as A,k as F,M as t,l as T,D as G,n as M,E as _,o as O,p as N,q as V,s as q,t as d,v as U,w as W,x as B,y as $,z as H,B as K,C as Y,G as J,H as Q,I as X,J as Z,K as oo,N as ao,O as lo,Q as ro,U as co,V as go,W as m,X as p,Y as eo,Z as bo,_ as no,$ as io,a0 as so,a1 as to,a2 as mo,a3 as po,a4 as uo,a5 as fo,a6 as ho,a7 as vo,a8 as yo,a9 as xo,aa as zo,ab as wo,ac as Po,ad as ko,ae as So,af as Lo,ag as Co,ah as Ro,ai as jo,aj as Eo,ak as Io,al as Do,am as Ao,an as Fo,ao as To,ap as Go,aq as Mo,ar as _o,as as Oo,at as No,au as Vo,av as qo,aw as Uo,ax as Wo,ay as n,az as Bo,aA as $o,aB as Ho,aC as Ko,aD as Yo,aE as Jo}from"./pages-
|
|
1
|
+
import{U as g,j as o,c_ as f,eD as h,eE as v,eF as y,l as r,cl as x,eG as a,r as z,o as w,eH as P}from"./vendor-RdRDaQiR.js";import{r as k,s as S}from"./vendor-arizeai-DsYDNOqt.js";import{L,g as C,r as R,h as j,i as E,F as I,j as D,P as A,k as F,M as t,l as T,D as G,n as M,E as _,o as O,p as N,q as V,s as q,t as d,v as U,w as W,x as B,y as $,z as H,B as K,C as Y,G as J,H as Q,I as X,J as Z,K as oo,N as ao,O as lo,Q as ro,U as co,V as go,W as m,X as p,Y as eo,Z as bo,_ as no,$ as io,a0 as so,a1 as to,a2 as mo,a3 as po,a4 as uo,a5 as fo,a6 as ho,a7 as vo,a8 as yo,a9 as xo,aa as zo,ab as wo,ac as Po,ad as ko,ae as So,af as Lo,ag as Co,ah as Ro,ai as jo,aj as Eo,ak as Io,al as Do,am as Ao,an as Fo,ao as To,ap as Go,aq as Mo,ar as _o,as as Oo,at as No,au as Vo,av as qo,aw as Uo,ax as Wo,ay as n,az as Bo,aA as $o,aB as Ho,aC as Ko,aD as Yo,aE as Jo}from"./pages-YmQb55Uo.js";import{fR as Qo,cY as Xo,U as Zo,fS as oa,fT as aa,fU as la}from"./components-BBwXqJXQ.js";import"./vendor-three-BLWp5bic.js";import"./vendor-codemirror-BzJDUbEx.js";import"./vendor-shiki-BAcocHFl.js";import"./vendor-recharts-BTHn5Y2R.js";(function(){const b=document.createElement("link").relList;if(b&&b.supports&&b.supports("modulepreload"))return;for(const c of document.querySelectorAll('link[rel="modulepreload"]'))s(c);new MutationObserver(c=>{for(const e of c)if(e.type==="childList")for(const i of e.addedNodes)i.tagName==="LINK"&&i.rel==="modulepreload"&&s(i)}).observe(document,{childList:!0,subtree:!0});function u(c){const e={};return c.integrity&&(e.integrity=c.integrity),c.referrerPolicy&&(e.referrerPolicy=c.referrerPolicy),c.crossOrigin==="use-credentials"?e.credentials="include":c.crossOrigin==="anonymous"?e.credentials="omit":e.credentials="same-origin",e}function s(c){if(c.ep)return;c.ep=!0;const e=u(c);fetch(c.href,e)}})();const ra=g`
|
|
2
2
|
:root,
|
|
3
3
|
.ac-theme {
|
|
4
4
|
--ac-global-dimension-scale-factor: 1;
|