opik 2.0.25 → 2.0.26

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.
package/dist/index.d.cts CHANGED
@@ -2595,6 +2595,7 @@ declare const SpanSearchStreamRequestPublicExcludeItem: {
2595
2595
  readonly Duration: "duration";
2596
2596
  readonly Ttft: "ttft";
2597
2597
  readonly Source: "source";
2598
+ readonly Environment: "environment";
2598
2599
  };
2599
2600
  type SpanSearchStreamRequestPublicExcludeItem = (typeof SpanSearchStreamRequestPublicExcludeItem)[keyof typeof SpanSearchStreamRequestPublicExcludeItem];
2600
2601
 
@@ -2975,6 +2976,7 @@ declare const TraceSearchStreamRequestPublicExcludeItem: {
2975
2976
  readonly Providers: "providers";
2976
2977
  readonly Experiment: "experiment";
2977
2978
  readonly Source: "source";
2979
+ readonly Environment: "environment";
2978
2980
  };
2979
2981
  type TraceSearchStreamRequestPublicExcludeItem = (typeof TraceSearchStreamRequestPublicExcludeItem)[keyof typeof TraceSearchStreamRequestPublicExcludeItem];
2980
2982
 
@@ -4215,6 +4217,8 @@ declare const DatasetItemFilterOperator: {
4215
4217
  readonly LessThanOrEqualTo: "<=";
4216
4218
  readonly IsEmpty: "is_empty";
4217
4219
  readonly IsNotEmpty: "is_not_empty";
4220
+ readonly In: "in";
4221
+ readonly NotIn: "not_in";
4218
4222
  };
4219
4223
  type DatasetItemFilterOperator = (typeof DatasetItemFilterOperator)[keyof typeof DatasetItemFilterOperator];
4220
4224
 
@@ -6288,6 +6292,7 @@ interface Span$1 {
6288
6292
  /** Time to first token in milliseconds */
6289
6293
  ttft?: number;
6290
6294
  source?: SpanSource;
6295
+ environment?: string;
6291
6296
  }
6292
6297
 
6293
6298
  /**
@@ -6322,6 +6327,7 @@ interface SpanExperimentItemBulkWriteView {
6322
6327
  /** Time to first token in milliseconds */
6323
6328
  ttft?: number;
6324
6329
  source?: SpanExperimentItemBulkWriteViewSource;
6330
+ environment?: string;
6325
6331
  }
6326
6332
 
6327
6333
  declare const SpanExperimentItemBulkWriteViewSource: {
@@ -6360,6 +6366,8 @@ declare const SpanFilterOperator: {
6360
6366
  readonly LessThanOrEqualTo: "<=";
6361
6367
  readonly IsEmpty: "is_empty";
6362
6368
  readonly IsNotEmpty: "is_not_empty";
6369
+ readonly In: "in";
6370
+ readonly NotIn: "not_in";
6363
6371
  };
6364
6372
  type SpanFilterOperator = (typeof SpanFilterOperator)[keyof typeof SpanFilterOperator];
6365
6373
 
@@ -6383,6 +6391,8 @@ declare const SpanFilterPublicOperator: {
6383
6391
  readonly LessThanOrEqualTo: "<=";
6384
6392
  readonly IsEmpty: "is_empty";
6385
6393
  readonly IsNotEmpty: "is_not_empty";
6394
+ readonly In: "in";
6395
+ readonly NotIn: "not_in";
6386
6396
  };
6387
6397
  type SpanFilterPublicOperator = (typeof SpanFilterPublicOperator)[keyof typeof SpanFilterPublicOperator];
6388
6398
 
@@ -6406,6 +6416,8 @@ declare const SpanFilterWriteOperator: {
6406
6416
  readonly LessThanOrEqualTo: "<=";
6407
6417
  readonly IsEmpty: "is_empty";
6408
6418
  readonly IsNotEmpty: "is_not_empty";
6419
+ readonly In: "in";
6420
+ readonly NotIn: "not_in";
6409
6421
  };
6410
6422
  type SpanFilterWriteOperator = (typeof SpanFilterWriteOperator)[keyof typeof SpanFilterWriteOperator];
6411
6423
 
@@ -6470,6 +6482,7 @@ interface SpanPublic {
6470
6482
  /** Time to first token in milliseconds */
6471
6483
  ttft?: number;
6472
6484
  source?: SpanPublicSource;
6485
+ environment?: string;
6473
6486
  }
6474
6487
 
6475
6488
  declare const SpanPublicSource: {
@@ -6534,6 +6547,7 @@ interface SpanUpdate$1 {
6534
6547
  errorInfo?: ErrorInfo;
6535
6548
  ttft?: number;
6536
6549
  source?: SpanUpdateSource;
6550
+ environment?: string;
6537
6551
  }
6538
6552
 
6539
6553
  declare const SpanUpdateSource: {
@@ -6591,6 +6605,7 @@ interface SpanWrite {
6591
6605
  /** Time to first token in milliseconds */
6592
6606
  ttft?: number;
6593
6607
  source?: SpanWriteSource;
6608
+ environment?: string;
6594
6609
  }
6595
6610
 
6596
6611
  declare const SpanWriteSource: {
@@ -6737,6 +6752,7 @@ interface Trace$1 {
6737
6752
  providers?: string[];
6738
6753
  experiment?: ExperimentItemReference;
6739
6754
  source?: TraceSource;
6755
+ environment?: string;
6740
6756
  }
6741
6757
 
6742
6758
  interface TraceCountResponse {
@@ -6775,6 +6791,7 @@ interface TraceExperimentItemBulkWriteView {
6775
6791
  ttft?: number;
6776
6792
  threadId?: string;
6777
6793
  source?: TraceExperimentItemBulkWriteViewSource;
6794
+ environment?: string;
6778
6795
  }
6779
6796
 
6780
6797
  declare const TraceExperimentItemBulkWriteViewSource: {
@@ -6805,6 +6822,8 @@ declare const TraceFilterOperator: {
6805
6822
  readonly LessThanOrEqualTo: "<=";
6806
6823
  readonly IsEmpty: "is_empty";
6807
6824
  readonly IsNotEmpty: "is_not_empty";
6825
+ readonly In: "in";
6826
+ readonly NotIn: "not_in";
6808
6827
  };
6809
6828
  type TraceFilterOperator = (typeof TraceFilterOperator)[keyof typeof TraceFilterOperator];
6810
6829
 
@@ -6828,6 +6847,8 @@ declare const TraceFilterPublicOperator: {
6828
6847
  readonly LessThanOrEqualTo: "<=";
6829
6848
  readonly IsEmpty: "is_empty";
6830
6849
  readonly IsNotEmpty: "is_not_empty";
6850
+ readonly In: "in";
6851
+ readonly NotIn: "not_in";
6831
6852
  };
6832
6853
  type TraceFilterPublicOperator = (typeof TraceFilterPublicOperator)[keyof typeof TraceFilterPublicOperator];
6833
6854
 
@@ -6851,6 +6872,8 @@ declare const TraceFilterWriteOperator: {
6851
6872
  readonly LessThanOrEqualTo: "<=";
6852
6873
  readonly IsEmpty: "is_empty";
6853
6874
  readonly IsNotEmpty: "is_not_empty";
6875
+ readonly In: "in";
6876
+ readonly NotIn: "not_in";
6854
6877
  };
6855
6878
  type TraceFilterWriteOperator = (typeof TraceFilterWriteOperator)[keyof typeof TraceFilterWriteOperator];
6856
6879
 
@@ -6897,6 +6920,7 @@ interface TracePublic {
6897
6920
  providers?: string[];
6898
6921
  experiment?: ExperimentItemReferencePublic;
6899
6922
  source?: TracePublicSource;
6923
+ environment?: string;
6900
6924
  }
6901
6925
 
6902
6926
  declare const TracePublicSource: {
@@ -6941,6 +6965,7 @@ interface TraceThread {
6941
6965
  lastUpdatedBy?: string;
6942
6966
  createdBy?: string;
6943
6967
  createdAt?: Date;
6968
+ environment?: string;
6944
6969
  }
6945
6970
 
6946
6971
  interface TraceThreadFilter {
@@ -6963,6 +6988,8 @@ declare const TraceThreadFilterOperator: {
6963
6988
  readonly LessThanOrEqualTo: "<=";
6964
6989
  readonly IsEmpty: "is_empty";
6965
6990
  readonly IsNotEmpty: "is_not_empty";
6991
+ readonly In: "in";
6992
+ readonly NotIn: "not_in";
6966
6993
  };
6967
6994
  type TraceThreadFilterOperator = (typeof TraceThreadFilterOperator)[keyof typeof TraceThreadFilterOperator];
6968
6995
 
@@ -6986,6 +7013,8 @@ declare const TraceThreadFilterPublicOperator: {
6986
7013
  readonly LessThanOrEqualTo: "<=";
6987
7014
  readonly IsEmpty: "is_empty";
6988
7015
  readonly IsNotEmpty: "is_not_empty";
7016
+ readonly In: "in";
7017
+ readonly NotIn: "not_in";
6989
7018
  };
6990
7019
  type TraceThreadFilterPublicOperator = (typeof TraceThreadFilterPublicOperator)[keyof typeof TraceThreadFilterPublicOperator];
6991
7020
 
@@ -7009,6 +7038,8 @@ declare const TraceThreadFilterWriteOperator: {
7009
7038
  readonly LessThanOrEqualTo: "<=";
7010
7039
  readonly IsEmpty: "is_empty";
7011
7040
  readonly IsNotEmpty: "is_not_empty";
7041
+ readonly In: "in";
7042
+ readonly NotIn: "not_in";
7012
7043
  };
7013
7044
  type TraceThreadFilterWriteOperator = (typeof TraceThreadFilterWriteOperator)[keyof typeof TraceThreadFilterWriteOperator];
7014
7045
 
@@ -7089,6 +7120,7 @@ interface TraceUpdate {
7089
7120
  threadId?: string;
7090
7121
  ttft?: number;
7091
7122
  source?: TraceUpdateSource;
7123
+ environment?: string;
7092
7124
  }
7093
7125
 
7094
7126
  declare const TraceUpdateSource: {
@@ -7122,6 +7154,7 @@ interface TraceWrite {
7122
7154
  ttft?: number;
7123
7155
  threadId?: string;
7124
7156
  source?: TraceWriteSource;
7157
+ environment?: string;
7125
7158
  }
7126
7159
 
7127
7160
  declare const TraceWriteSource: {
package/dist/index.d.ts CHANGED
@@ -2595,6 +2595,7 @@ declare const SpanSearchStreamRequestPublicExcludeItem: {
2595
2595
  readonly Duration: "duration";
2596
2596
  readonly Ttft: "ttft";
2597
2597
  readonly Source: "source";
2598
+ readonly Environment: "environment";
2598
2599
  };
2599
2600
  type SpanSearchStreamRequestPublicExcludeItem = (typeof SpanSearchStreamRequestPublicExcludeItem)[keyof typeof SpanSearchStreamRequestPublicExcludeItem];
2600
2601
 
@@ -2975,6 +2976,7 @@ declare const TraceSearchStreamRequestPublicExcludeItem: {
2975
2976
  readonly Providers: "providers";
2976
2977
  readonly Experiment: "experiment";
2977
2978
  readonly Source: "source";
2979
+ readonly Environment: "environment";
2978
2980
  };
2979
2981
  type TraceSearchStreamRequestPublicExcludeItem = (typeof TraceSearchStreamRequestPublicExcludeItem)[keyof typeof TraceSearchStreamRequestPublicExcludeItem];
2980
2982
 
@@ -4215,6 +4217,8 @@ declare const DatasetItemFilterOperator: {
4215
4217
  readonly LessThanOrEqualTo: "<=";
4216
4218
  readonly IsEmpty: "is_empty";
4217
4219
  readonly IsNotEmpty: "is_not_empty";
4220
+ readonly In: "in";
4221
+ readonly NotIn: "not_in";
4218
4222
  };
4219
4223
  type DatasetItemFilterOperator = (typeof DatasetItemFilterOperator)[keyof typeof DatasetItemFilterOperator];
4220
4224
 
@@ -6288,6 +6292,7 @@ interface Span$1 {
6288
6292
  /** Time to first token in milliseconds */
6289
6293
  ttft?: number;
6290
6294
  source?: SpanSource;
6295
+ environment?: string;
6291
6296
  }
6292
6297
 
6293
6298
  /**
@@ -6322,6 +6327,7 @@ interface SpanExperimentItemBulkWriteView {
6322
6327
  /** Time to first token in milliseconds */
6323
6328
  ttft?: number;
6324
6329
  source?: SpanExperimentItemBulkWriteViewSource;
6330
+ environment?: string;
6325
6331
  }
6326
6332
 
6327
6333
  declare const SpanExperimentItemBulkWriteViewSource: {
@@ -6360,6 +6366,8 @@ declare const SpanFilterOperator: {
6360
6366
  readonly LessThanOrEqualTo: "<=";
6361
6367
  readonly IsEmpty: "is_empty";
6362
6368
  readonly IsNotEmpty: "is_not_empty";
6369
+ readonly In: "in";
6370
+ readonly NotIn: "not_in";
6363
6371
  };
6364
6372
  type SpanFilterOperator = (typeof SpanFilterOperator)[keyof typeof SpanFilterOperator];
6365
6373
 
@@ -6383,6 +6391,8 @@ declare const SpanFilterPublicOperator: {
6383
6391
  readonly LessThanOrEqualTo: "<=";
6384
6392
  readonly IsEmpty: "is_empty";
6385
6393
  readonly IsNotEmpty: "is_not_empty";
6394
+ readonly In: "in";
6395
+ readonly NotIn: "not_in";
6386
6396
  };
6387
6397
  type SpanFilterPublicOperator = (typeof SpanFilterPublicOperator)[keyof typeof SpanFilterPublicOperator];
6388
6398
 
@@ -6406,6 +6416,8 @@ declare const SpanFilterWriteOperator: {
6406
6416
  readonly LessThanOrEqualTo: "<=";
6407
6417
  readonly IsEmpty: "is_empty";
6408
6418
  readonly IsNotEmpty: "is_not_empty";
6419
+ readonly In: "in";
6420
+ readonly NotIn: "not_in";
6409
6421
  };
6410
6422
  type SpanFilterWriteOperator = (typeof SpanFilterWriteOperator)[keyof typeof SpanFilterWriteOperator];
6411
6423
 
@@ -6470,6 +6482,7 @@ interface SpanPublic {
6470
6482
  /** Time to first token in milliseconds */
6471
6483
  ttft?: number;
6472
6484
  source?: SpanPublicSource;
6485
+ environment?: string;
6473
6486
  }
6474
6487
 
6475
6488
  declare const SpanPublicSource: {
@@ -6534,6 +6547,7 @@ interface SpanUpdate$1 {
6534
6547
  errorInfo?: ErrorInfo;
6535
6548
  ttft?: number;
6536
6549
  source?: SpanUpdateSource;
6550
+ environment?: string;
6537
6551
  }
6538
6552
 
6539
6553
  declare const SpanUpdateSource: {
@@ -6591,6 +6605,7 @@ interface SpanWrite {
6591
6605
  /** Time to first token in milliseconds */
6592
6606
  ttft?: number;
6593
6607
  source?: SpanWriteSource;
6608
+ environment?: string;
6594
6609
  }
6595
6610
 
6596
6611
  declare const SpanWriteSource: {
@@ -6737,6 +6752,7 @@ interface Trace$1 {
6737
6752
  providers?: string[];
6738
6753
  experiment?: ExperimentItemReference;
6739
6754
  source?: TraceSource;
6755
+ environment?: string;
6740
6756
  }
6741
6757
 
6742
6758
  interface TraceCountResponse {
@@ -6775,6 +6791,7 @@ interface TraceExperimentItemBulkWriteView {
6775
6791
  ttft?: number;
6776
6792
  threadId?: string;
6777
6793
  source?: TraceExperimentItemBulkWriteViewSource;
6794
+ environment?: string;
6778
6795
  }
6779
6796
 
6780
6797
  declare const TraceExperimentItemBulkWriteViewSource: {
@@ -6805,6 +6822,8 @@ declare const TraceFilterOperator: {
6805
6822
  readonly LessThanOrEqualTo: "<=";
6806
6823
  readonly IsEmpty: "is_empty";
6807
6824
  readonly IsNotEmpty: "is_not_empty";
6825
+ readonly In: "in";
6826
+ readonly NotIn: "not_in";
6808
6827
  };
6809
6828
  type TraceFilterOperator = (typeof TraceFilterOperator)[keyof typeof TraceFilterOperator];
6810
6829
 
@@ -6828,6 +6847,8 @@ declare const TraceFilterPublicOperator: {
6828
6847
  readonly LessThanOrEqualTo: "<=";
6829
6848
  readonly IsEmpty: "is_empty";
6830
6849
  readonly IsNotEmpty: "is_not_empty";
6850
+ readonly In: "in";
6851
+ readonly NotIn: "not_in";
6831
6852
  };
6832
6853
  type TraceFilterPublicOperator = (typeof TraceFilterPublicOperator)[keyof typeof TraceFilterPublicOperator];
6833
6854
 
@@ -6851,6 +6872,8 @@ declare const TraceFilterWriteOperator: {
6851
6872
  readonly LessThanOrEqualTo: "<=";
6852
6873
  readonly IsEmpty: "is_empty";
6853
6874
  readonly IsNotEmpty: "is_not_empty";
6875
+ readonly In: "in";
6876
+ readonly NotIn: "not_in";
6854
6877
  };
6855
6878
  type TraceFilterWriteOperator = (typeof TraceFilterWriteOperator)[keyof typeof TraceFilterWriteOperator];
6856
6879
 
@@ -6897,6 +6920,7 @@ interface TracePublic {
6897
6920
  providers?: string[];
6898
6921
  experiment?: ExperimentItemReferencePublic;
6899
6922
  source?: TracePublicSource;
6923
+ environment?: string;
6900
6924
  }
6901
6925
 
6902
6926
  declare const TracePublicSource: {
@@ -6941,6 +6965,7 @@ interface TraceThread {
6941
6965
  lastUpdatedBy?: string;
6942
6966
  createdBy?: string;
6943
6967
  createdAt?: Date;
6968
+ environment?: string;
6944
6969
  }
6945
6970
 
6946
6971
  interface TraceThreadFilter {
@@ -6963,6 +6988,8 @@ declare const TraceThreadFilterOperator: {
6963
6988
  readonly LessThanOrEqualTo: "<=";
6964
6989
  readonly IsEmpty: "is_empty";
6965
6990
  readonly IsNotEmpty: "is_not_empty";
6991
+ readonly In: "in";
6992
+ readonly NotIn: "not_in";
6966
6993
  };
6967
6994
  type TraceThreadFilterOperator = (typeof TraceThreadFilterOperator)[keyof typeof TraceThreadFilterOperator];
6968
6995
 
@@ -6986,6 +7013,8 @@ declare const TraceThreadFilterPublicOperator: {
6986
7013
  readonly LessThanOrEqualTo: "<=";
6987
7014
  readonly IsEmpty: "is_empty";
6988
7015
  readonly IsNotEmpty: "is_not_empty";
7016
+ readonly In: "in";
7017
+ readonly NotIn: "not_in";
6989
7018
  };
6990
7019
  type TraceThreadFilterPublicOperator = (typeof TraceThreadFilterPublicOperator)[keyof typeof TraceThreadFilterPublicOperator];
6991
7020
 
@@ -7009,6 +7038,8 @@ declare const TraceThreadFilterWriteOperator: {
7009
7038
  readonly LessThanOrEqualTo: "<=";
7010
7039
  readonly IsEmpty: "is_empty";
7011
7040
  readonly IsNotEmpty: "is_not_empty";
7041
+ readonly In: "in";
7042
+ readonly NotIn: "not_in";
7012
7043
  };
7013
7044
  type TraceThreadFilterWriteOperator = (typeof TraceThreadFilterWriteOperator)[keyof typeof TraceThreadFilterWriteOperator];
7014
7045
 
@@ -7089,6 +7120,7 @@ interface TraceUpdate {
7089
7120
  threadId?: string;
7090
7121
  ttft?: number;
7091
7122
  source?: TraceUpdateSource;
7123
+ environment?: string;
7092
7124
  }
7093
7125
 
7094
7126
  declare const TraceUpdateSource: {
@@ -7122,6 +7154,7 @@ interface TraceWrite {
7122
7154
  ttft?: number;
7123
7155
  threadId?: string;
7124
7156
  source?: TraceWriteSource;
7157
+ environment?: string;
7125
7158
  }
7126
7159
 
7127
7160
  declare const TraceWriteSource: {
package/dist/index.js CHANGED
@@ -1 +1 @@
1
- import {Ea}from'./chunk-CFMWKPCO.js';export{ra as AgentTaskCompletionJudge,qa as AgentToolCorrectnessJudge,ea as AnswerRelevance,aa as BaseLLMJudgeMetric,B as BaseMetric,C as BaseSuiteEvaluator,p as ChatPrompt,ta as ComplianceRiskJudge,i as ConfigMismatchError,h as ConfigNotFoundError,Z as Contains,y as DEFAULT_EXECUTION_POLICY,j as Dataset,f as DatasetVersion,g as DatasetVersionNotFoundError,la as DemographicBiasJudge,ja as DialogueHelpfulnessJudge,Y as ExactMatch,fa as GEval,ga as GEvalPreset,na as GenderBiasJudge,da as Hallucination,$ as IsJson,P as LLMJudge,G as ModelConfigurationError,E as ModelError,F as ModelGenerationError,ba as Moderation,Ba as OPIK_PARENT_SPAN_ID_HEADER,Aa as OPIK_TRACE_ID_HEADER,za as Opik,D as OpikBaseModel,q as OpikQueryLanguage,d as OpikSpanType,ma as PoliticalBiasJudge,o as Prompt,k as PromptType,sa as PromptUncertaintyJudge,ka as QARelevanceJudge,_ as RegexMatch,pa as RegionalBiasJudge,oa as ReligiousBiasJudge,O as ResponseSchema,M as SYSTEM_PROMPT,ia as SummarizationCoherenceJudge,ha as SummarizationConsistencyJudge,xa as TestSuite,z as TestSuiteResult,s as ThreadsAnnotationQueue,r as TracesAnnotationQueue,N as USER_PROMPT_TEMPLATE,ca as Usefulness,I as VercelAIChatModel,v as activateRunner,t as agentConfigContext,A as buildSuiteResult,J as createModel,K as createModelFromInstance,R as deserializeEvaluators,H as detectProvider,c as disableLogger,W as evaluate,X as evaluatePrompt,U as evaluateTestSuite,u as flushAll,e as generateId,Ca as getDistributedTraceHeaders,l as getGlobalClient,w as getTrackContext,a as logger,n as resetGlobalClient,ua as resolveEvaluators,S as resolveExecutionPolicy,T as resolveItemExecutionPolicy,L as resolveModel,V as runTests,Q as serializeEvaluators,m as setGlobalClient,b as setLoggerLevel,x as track,va as validateEvaluators,wa as validateExecutionPolicy,Da as z}from'./chunk-CFMWKPCO.js';Ea();
1
+ import {Ea}from'./chunk-4SYOSTVG.js';export{ra as AgentTaskCompletionJudge,qa as AgentToolCorrectnessJudge,ea as AnswerRelevance,aa as BaseLLMJudgeMetric,B as BaseMetric,C as BaseSuiteEvaluator,p as ChatPrompt,ta as ComplianceRiskJudge,i as ConfigMismatchError,h as ConfigNotFoundError,Z as Contains,y as DEFAULT_EXECUTION_POLICY,j as Dataset,f as DatasetVersion,g as DatasetVersionNotFoundError,la as DemographicBiasJudge,ja as DialogueHelpfulnessJudge,Y as ExactMatch,fa as GEval,ga as GEvalPreset,na as GenderBiasJudge,da as Hallucination,$ as IsJson,P as LLMJudge,G as ModelConfigurationError,E as ModelError,F as ModelGenerationError,ba as Moderation,Ba as OPIK_PARENT_SPAN_ID_HEADER,Aa as OPIK_TRACE_ID_HEADER,za as Opik,D as OpikBaseModel,q as OpikQueryLanguage,d as OpikSpanType,ma as PoliticalBiasJudge,o as Prompt,k as PromptType,sa as PromptUncertaintyJudge,ka as QARelevanceJudge,_ as RegexMatch,pa as RegionalBiasJudge,oa as ReligiousBiasJudge,O as ResponseSchema,M as SYSTEM_PROMPT,ia as SummarizationCoherenceJudge,ha as SummarizationConsistencyJudge,xa as TestSuite,z as TestSuiteResult,s as ThreadsAnnotationQueue,r as TracesAnnotationQueue,N as USER_PROMPT_TEMPLATE,ca as Usefulness,I as VercelAIChatModel,v as activateRunner,t as agentConfigContext,A as buildSuiteResult,J as createModel,K as createModelFromInstance,R as deserializeEvaluators,H as detectProvider,c as disableLogger,W as evaluate,X as evaluatePrompt,U as evaluateTestSuite,u as flushAll,e as generateId,Ca as getDistributedTraceHeaders,l as getGlobalClient,w as getTrackContext,a as logger,n as resetGlobalClient,ua as resolveEvaluators,S as resolveExecutionPolicy,T as resolveItemExecutionPolicy,L as resolveModel,V as runTests,Q as serializeEvaluators,m as setGlobalClient,b as setLoggerLevel,x as track,va as validateEvaluators,wa as validateExecutionPolicy,Da as z}from'./chunk-4SYOSTVG.js';Ea();
@@ -1 +1 @@
1
- import {ya}from'./chunk-CFMWKPCO.js';export{y as DEFAULT_EXECUTION_POLICY,xa as TestSuite,z as TestSuiteResult,A as buildSuiteResult,R as deserializeEvaluators,U as evaluateTestSuite,S as resolveExecutionPolicy,T as resolveItemExecutionPolicy,V as runTests,Q as serializeEvaluators}from'./chunk-CFMWKPCO.js';ya();
1
+ import {ya}from'./chunk-4SYOSTVG.js';export{y as DEFAULT_EXECUTION_POLICY,xa as TestSuite,z as TestSuiteResult,A as buildSuiteResult,R as deserializeEvaluators,U as evaluateTestSuite,S as resolveExecutionPolicy,T as resolveItemExecutionPolicy,V as runTests,Q as serializeEvaluators}from'./chunk-4SYOSTVG.js';ya();
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "opik",
3
3
  "description": "Opik TypeScript and JavaScript SDK",
4
- "version": "2.0.25",
4
+ "version": "2.0.26",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+https://github.com/comet-ml/opik.git",