opik 2.2.2 → 2.2.4

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
@@ -4048,6 +4048,8 @@ declare namespace AutomationRuleEvaluatorObjectObjectPublic {
4048
4048
  name: string;
4049
4049
  samplingRate?: number;
4050
4050
  enabled?: boolean;
4051
+ /** Controls whether the rule fires on production traces, experiment traces, or both. Defaults to 'production' if omitted. */
4052
+ triggerScope?: AutomationRuleEvaluatorObjectObjectPublicTriggerScope;
4051
4053
  createdAt?: Date;
4052
4054
  createdBy?: string;
4053
4055
  lastUpdatedAt?: Date;
@@ -4061,6 +4063,14 @@ declare const AutomationRuleEvaluatorObjectObjectPublicAction: {
4061
4063
  };
4062
4064
  type AutomationRuleEvaluatorObjectObjectPublicAction = (typeof AutomationRuleEvaluatorObjectObjectPublicAction)[keyof typeof AutomationRuleEvaluatorObjectObjectPublicAction];
4063
4065
 
4066
+ /** Controls whether the rule fires on production traces, experiment traces, or both. Defaults to 'production' if omitted. */
4067
+ declare const AutomationRuleEvaluatorObjectObjectPublicTriggerScope: {
4068
+ readonly Production: "production";
4069
+ readonly Experiment: "experiment";
4070
+ readonly Both: "both";
4071
+ };
4072
+ type AutomationRuleEvaluatorObjectObjectPublicTriggerScope = (typeof AutomationRuleEvaluatorObjectObjectPublicTriggerScope)[keyof typeof AutomationRuleEvaluatorObjectObjectPublicTriggerScope];
4073
+
4064
4074
  interface AutomationRuleEvaluatorPagePublic {
4065
4075
  page?: number;
4066
4076
  size?: number;
@@ -4100,6 +4110,8 @@ declare namespace AutomationRuleEvaluatorPublic {
4100
4110
  name: string;
4101
4111
  samplingRate?: number;
4102
4112
  enabled?: boolean;
4113
+ /** Controls whether the rule fires on production traces, experiment traces, or both. Defaults to 'production' if omitted. */
4114
+ triggerScope?: AutomationRuleEvaluatorPublicTriggerScope;
4103
4115
  createdAt?: Date;
4104
4116
  createdBy?: string;
4105
4117
  lastUpdatedAt?: Date;
@@ -4113,6 +4125,14 @@ declare const AutomationRuleEvaluatorPublicAction: {
4113
4125
  };
4114
4126
  type AutomationRuleEvaluatorPublicAction = (typeof AutomationRuleEvaluatorPublicAction)[keyof typeof AutomationRuleEvaluatorPublicAction];
4115
4127
 
4128
+ /** Controls whether the rule fires on production traces, experiment traces, or both. Defaults to 'production' if omitted. */
4129
+ declare const AutomationRuleEvaluatorPublicTriggerScope: {
4130
+ readonly Production: "production";
4131
+ readonly Experiment: "experiment";
4132
+ readonly Both: "both";
4133
+ };
4134
+ type AutomationRuleEvaluatorPublicTriggerScope = (typeof AutomationRuleEvaluatorPublicTriggerScope)[keyof typeof AutomationRuleEvaluatorPublicTriggerScope];
4135
+
4116
4136
  interface AutomationRuleEvaluatorSpanLlmAsJudgePublic {
4117
4137
  filters?: SpanFilterPublic[];
4118
4138
  code?: SpanLlmAsJudgeCodePublic;
@@ -4177,6 +4197,7 @@ declare namespace AutomationRuleEvaluatorUpdate {
4177
4197
  name: string;
4178
4198
  samplingRate?: number;
4179
4199
  enabled?: boolean;
4200
+ triggerScope?: AutomationRuleEvaluatorUpdateTriggerScope;
4180
4201
  /** Primary project ID (legacy field, maintained for backwards compatibility) */
4181
4202
  projectId?: string;
4182
4203
  /** Multiple project IDs (new field for multi-project support) */
@@ -4215,6 +4236,13 @@ interface AutomationRuleEvaluatorUpdateTraceThreadUserDefinedMetricPython {
4215
4236
  code?: TraceThreadUserDefinedMetricPythonCode;
4216
4237
  }
4217
4238
 
4239
+ declare const AutomationRuleEvaluatorUpdateTriggerScope: {
4240
+ readonly Production: "production";
4241
+ readonly Experiment: "experiment";
4242
+ readonly Both: "both";
4243
+ };
4244
+ type AutomationRuleEvaluatorUpdateTriggerScope = (typeof AutomationRuleEvaluatorUpdateTriggerScope)[keyof typeof AutomationRuleEvaluatorUpdateTriggerScope];
4245
+
4218
4246
  interface AutomationRuleEvaluatorUpdateUserDefinedMetricPython {
4219
4247
  filters?: TraceFilter[];
4220
4248
  code?: UserDefinedMetricPythonCode;
@@ -4258,6 +4286,8 @@ declare namespace AutomationRuleEvaluatorWrite {
4258
4286
  name: string;
4259
4287
  samplingRate?: number;
4260
4288
  enabled?: boolean;
4289
+ /** Controls whether the rule fires on production traces, experiment traces, or both. Defaults to 'production' if omitted. */
4290
+ triggerScope?: AutomationRuleEvaluatorWriteTriggerScope;
4261
4291
  action: AutomationRuleEvaluatorWriteAction;
4262
4292
  }
4263
4293
  }
@@ -4267,6 +4297,14 @@ declare const AutomationRuleEvaluatorWriteAction: {
4267
4297
  };
4268
4298
  type AutomationRuleEvaluatorWriteAction = (typeof AutomationRuleEvaluatorWriteAction)[keyof typeof AutomationRuleEvaluatorWriteAction];
4269
4299
 
4300
+ /** Controls whether the rule fires on production traces, experiment traces, or both. Defaults to 'production' if omitted. */
4301
+ declare const AutomationRuleEvaluatorWriteTriggerScope: {
4302
+ readonly Production: "production";
4303
+ readonly Experiment: "experiment";
4304
+ readonly Both: "both";
4305
+ };
4306
+ type AutomationRuleEvaluatorWriteTriggerScope = (typeof AutomationRuleEvaluatorWriteTriggerScope)[keyof typeof AutomationRuleEvaluatorWriteTriggerScope];
4307
+
4270
4308
  interface AvgValueStatPublic {
4271
4309
  value?: number;
4272
4310
  }
@@ -13409,6 +13447,9 @@ interface OpikConfig {
13409
13447
  holdUntilFlush?: boolean;
13410
13448
  promptCacheTtlSeconds?: number;
13411
13449
  trackDisable?: boolean;
13450
+ maxPayloadSizeMb?: number;
13451
+ isAttachmentExtractionActive?: boolean;
13452
+ minBase64EmbeddedAttachmentSize?: number;
13412
13453
  }
13413
13454
  interface ConstructorOpikConfig extends Omit<OpikConfig, "environment"> {
13414
13455
  headers?: Record<string, string>;
@@ -13925,13 +13966,24 @@ declare class AssertionResultsBatchQueue extends BatchQueue<AssertionResultBatch
13925
13966
  protected deleteEntities(): Promise<void>;
13926
13967
  }
13927
13968
 
13969
+ interface AttachmentUploadConfig {
13970
+ minSizeBytes: number;
13971
+ apiUrl: string;
13972
+ workspaceName: string;
13973
+ apiKey?: string;
13974
+ extraHeaders?: Record<string, string>;
13975
+ }
13976
+
13928
13977
  type SpanUpdate = Partial<SavedSpan> & {
13929
13978
  traceId: string;
13930
13979
  };
13931
13980
  declare class SpanBatchQueue extends BatchQueue<SavedSpan> {
13932
13981
  private readonly api;
13933
- constructor(api: OpikApiClientTemp, delay?: number);
13982
+ private readonly maxPayloadSizeMb?;
13983
+ private readonly attachmentUpload?;
13984
+ constructor(api: OpikApiClientTemp, delay?: number, maxPayloadSizeMb?: number | undefined, attachmentUpload?: AttachmentUploadConfig | undefined);
13934
13985
  protected getId(entity: SavedSpan): string;
13986
+ private extractAttachments;
13935
13987
  protected createEntities(spans: SavedSpan[]): Promise<void>;
13936
13988
  protected getEntity(id: string): Promise<SavedSpan>;
13937
13989
  protected updateEntity(id: string, updates: SpanUpdate): Promise<void>;
@@ -13957,8 +14009,11 @@ declare class SpanFeedbackScoresBatchQueue extends BatchQueue<FeedbackScoreBatch
13957
14009
 
13958
14010
  declare class TraceBatchQueue extends BatchQueue<SavedTrace> {
13959
14011
  private readonly api;
13960
- constructor(api: OpikApiClientTemp, delay?: number);
14012
+ private readonly maxPayloadSizeMb?;
14013
+ private readonly attachmentUpload?;
14014
+ constructor(api: OpikApiClientTemp, delay?: number, maxPayloadSizeMb?: number | undefined, attachmentUpload?: AttachmentUploadConfig | undefined);
13961
14015
  protected getId(entity: SavedTrace): string;
14016
+ private extractAttachments;
13962
14017
  protected createEntities(traces: SavedTrace[]): Promise<void>;
13963
14018
  protected getEntity(id: string): Promise<SavedTrace>;
13964
14019
  protected updateEntity(id: string, updates: Partial<SavedTrace>): Promise<void>;
package/dist/index.d.ts CHANGED
@@ -4048,6 +4048,8 @@ declare namespace AutomationRuleEvaluatorObjectObjectPublic {
4048
4048
  name: string;
4049
4049
  samplingRate?: number;
4050
4050
  enabled?: boolean;
4051
+ /** Controls whether the rule fires on production traces, experiment traces, or both. Defaults to 'production' if omitted. */
4052
+ triggerScope?: AutomationRuleEvaluatorObjectObjectPublicTriggerScope;
4051
4053
  createdAt?: Date;
4052
4054
  createdBy?: string;
4053
4055
  lastUpdatedAt?: Date;
@@ -4061,6 +4063,14 @@ declare const AutomationRuleEvaluatorObjectObjectPublicAction: {
4061
4063
  };
4062
4064
  type AutomationRuleEvaluatorObjectObjectPublicAction = (typeof AutomationRuleEvaluatorObjectObjectPublicAction)[keyof typeof AutomationRuleEvaluatorObjectObjectPublicAction];
4063
4065
 
4066
+ /** Controls whether the rule fires on production traces, experiment traces, or both. Defaults to 'production' if omitted. */
4067
+ declare const AutomationRuleEvaluatorObjectObjectPublicTriggerScope: {
4068
+ readonly Production: "production";
4069
+ readonly Experiment: "experiment";
4070
+ readonly Both: "both";
4071
+ };
4072
+ type AutomationRuleEvaluatorObjectObjectPublicTriggerScope = (typeof AutomationRuleEvaluatorObjectObjectPublicTriggerScope)[keyof typeof AutomationRuleEvaluatorObjectObjectPublicTriggerScope];
4073
+
4064
4074
  interface AutomationRuleEvaluatorPagePublic {
4065
4075
  page?: number;
4066
4076
  size?: number;
@@ -4100,6 +4110,8 @@ declare namespace AutomationRuleEvaluatorPublic {
4100
4110
  name: string;
4101
4111
  samplingRate?: number;
4102
4112
  enabled?: boolean;
4113
+ /** Controls whether the rule fires on production traces, experiment traces, or both. Defaults to 'production' if omitted. */
4114
+ triggerScope?: AutomationRuleEvaluatorPublicTriggerScope;
4103
4115
  createdAt?: Date;
4104
4116
  createdBy?: string;
4105
4117
  lastUpdatedAt?: Date;
@@ -4113,6 +4125,14 @@ declare const AutomationRuleEvaluatorPublicAction: {
4113
4125
  };
4114
4126
  type AutomationRuleEvaluatorPublicAction = (typeof AutomationRuleEvaluatorPublicAction)[keyof typeof AutomationRuleEvaluatorPublicAction];
4115
4127
 
4128
+ /** Controls whether the rule fires on production traces, experiment traces, or both. Defaults to 'production' if omitted. */
4129
+ declare const AutomationRuleEvaluatorPublicTriggerScope: {
4130
+ readonly Production: "production";
4131
+ readonly Experiment: "experiment";
4132
+ readonly Both: "both";
4133
+ };
4134
+ type AutomationRuleEvaluatorPublicTriggerScope = (typeof AutomationRuleEvaluatorPublicTriggerScope)[keyof typeof AutomationRuleEvaluatorPublicTriggerScope];
4135
+
4116
4136
  interface AutomationRuleEvaluatorSpanLlmAsJudgePublic {
4117
4137
  filters?: SpanFilterPublic[];
4118
4138
  code?: SpanLlmAsJudgeCodePublic;
@@ -4177,6 +4197,7 @@ declare namespace AutomationRuleEvaluatorUpdate {
4177
4197
  name: string;
4178
4198
  samplingRate?: number;
4179
4199
  enabled?: boolean;
4200
+ triggerScope?: AutomationRuleEvaluatorUpdateTriggerScope;
4180
4201
  /** Primary project ID (legacy field, maintained for backwards compatibility) */
4181
4202
  projectId?: string;
4182
4203
  /** Multiple project IDs (new field for multi-project support) */
@@ -4215,6 +4236,13 @@ interface AutomationRuleEvaluatorUpdateTraceThreadUserDefinedMetricPython {
4215
4236
  code?: TraceThreadUserDefinedMetricPythonCode;
4216
4237
  }
4217
4238
 
4239
+ declare const AutomationRuleEvaluatorUpdateTriggerScope: {
4240
+ readonly Production: "production";
4241
+ readonly Experiment: "experiment";
4242
+ readonly Both: "both";
4243
+ };
4244
+ type AutomationRuleEvaluatorUpdateTriggerScope = (typeof AutomationRuleEvaluatorUpdateTriggerScope)[keyof typeof AutomationRuleEvaluatorUpdateTriggerScope];
4245
+
4218
4246
  interface AutomationRuleEvaluatorUpdateUserDefinedMetricPython {
4219
4247
  filters?: TraceFilter[];
4220
4248
  code?: UserDefinedMetricPythonCode;
@@ -4258,6 +4286,8 @@ declare namespace AutomationRuleEvaluatorWrite {
4258
4286
  name: string;
4259
4287
  samplingRate?: number;
4260
4288
  enabled?: boolean;
4289
+ /** Controls whether the rule fires on production traces, experiment traces, or both. Defaults to 'production' if omitted. */
4290
+ triggerScope?: AutomationRuleEvaluatorWriteTriggerScope;
4261
4291
  action: AutomationRuleEvaluatorWriteAction;
4262
4292
  }
4263
4293
  }
@@ -4267,6 +4297,14 @@ declare const AutomationRuleEvaluatorWriteAction: {
4267
4297
  };
4268
4298
  type AutomationRuleEvaluatorWriteAction = (typeof AutomationRuleEvaluatorWriteAction)[keyof typeof AutomationRuleEvaluatorWriteAction];
4269
4299
 
4300
+ /** Controls whether the rule fires on production traces, experiment traces, or both. Defaults to 'production' if omitted. */
4301
+ declare const AutomationRuleEvaluatorWriteTriggerScope: {
4302
+ readonly Production: "production";
4303
+ readonly Experiment: "experiment";
4304
+ readonly Both: "both";
4305
+ };
4306
+ type AutomationRuleEvaluatorWriteTriggerScope = (typeof AutomationRuleEvaluatorWriteTriggerScope)[keyof typeof AutomationRuleEvaluatorWriteTriggerScope];
4307
+
4270
4308
  interface AvgValueStatPublic {
4271
4309
  value?: number;
4272
4310
  }
@@ -13409,6 +13447,9 @@ interface OpikConfig {
13409
13447
  holdUntilFlush?: boolean;
13410
13448
  promptCacheTtlSeconds?: number;
13411
13449
  trackDisable?: boolean;
13450
+ maxPayloadSizeMb?: number;
13451
+ isAttachmentExtractionActive?: boolean;
13452
+ minBase64EmbeddedAttachmentSize?: number;
13412
13453
  }
13413
13454
  interface ConstructorOpikConfig extends Omit<OpikConfig, "environment"> {
13414
13455
  headers?: Record<string, string>;
@@ -13925,13 +13966,24 @@ declare class AssertionResultsBatchQueue extends BatchQueue<AssertionResultBatch
13925
13966
  protected deleteEntities(): Promise<void>;
13926
13967
  }
13927
13968
 
13969
+ interface AttachmentUploadConfig {
13970
+ minSizeBytes: number;
13971
+ apiUrl: string;
13972
+ workspaceName: string;
13973
+ apiKey?: string;
13974
+ extraHeaders?: Record<string, string>;
13975
+ }
13976
+
13928
13977
  type SpanUpdate = Partial<SavedSpan> & {
13929
13978
  traceId: string;
13930
13979
  };
13931
13980
  declare class SpanBatchQueue extends BatchQueue<SavedSpan> {
13932
13981
  private readonly api;
13933
- constructor(api: OpikApiClientTemp, delay?: number);
13982
+ private readonly maxPayloadSizeMb?;
13983
+ private readonly attachmentUpload?;
13984
+ constructor(api: OpikApiClientTemp, delay?: number, maxPayloadSizeMb?: number | undefined, attachmentUpload?: AttachmentUploadConfig | undefined);
13934
13985
  protected getId(entity: SavedSpan): string;
13986
+ private extractAttachments;
13935
13987
  protected createEntities(spans: SavedSpan[]): Promise<void>;
13936
13988
  protected getEntity(id: string): Promise<SavedSpan>;
13937
13989
  protected updateEntity(id: string, updates: SpanUpdate): Promise<void>;
@@ -13957,8 +14009,11 @@ declare class SpanFeedbackScoresBatchQueue extends BatchQueue<FeedbackScoreBatch
13957
14009
 
13958
14010
  declare class TraceBatchQueue extends BatchQueue<SavedTrace> {
13959
14011
  private readonly api;
13960
- constructor(api: OpikApiClientTemp, delay?: number);
14012
+ private readonly maxPayloadSizeMb?;
14013
+ private readonly attachmentUpload?;
14014
+ constructor(api: OpikApiClientTemp, delay?: number, maxPayloadSizeMb?: number | undefined, attachmentUpload?: AttachmentUploadConfig | undefined);
13961
14015
  protected getId(entity: SavedTrace): string;
14016
+ private extractAttachments;
13962
14017
  protected createEntities(traces: SavedTrace[]): Promise<void>;
13963
14018
  protected getEntity(id: string): Promise<SavedTrace>;
13964
14019
  protected updateEntity(id: string, updates: Partial<SavedTrace>): Promise<void>;
package/dist/index.js CHANGED
@@ -1 +1 @@
1
- import {Ia}from'./chunk-UWEW2JHE.js';export{va as AgentTaskCompletionJudge,ua as AgentToolCorrectnessJudge,ia as AnswerRelevance,ea as BaseLLMJudgeMetric,F as BaseMetric,G as BaseSuiteEvaluator,s as ChatPrompt,xa as ComplianceRiskJudge,l as ConfigMismatchError,k as ConfigNotFoundError,ba as Contains,B as DEFAULT_EXECUTION_POLICY,m as Dataset,i as DatasetVersion,j as DatasetVersionNotFoundError,pa as DemographicBiasJudge,na as DialogueHelpfulnessJudge,aa as ExactMatch,ja as GEval,ka as GEvalPreset,ra as GenderBiasJudge,ha as Hallucination,da as IsJson,T as LLMJudge,K as ModelConfigurationError,I as ModelError,J as ModelGenerationError,fa as Moderation,Fa as OPIK_PARENT_SPAN_ID_HEADER,Ea as OPIK_TRACE_ID_HEADER,Da as Opik,H as OpikBaseModel,t as OpikQueryLanguage,g as OpikSpanType,qa as PoliticalBiasJudge,r as Prompt,n as PromptType,wa as PromptUncertaintyJudge,oa as QARelevanceJudge,ca as RegexMatch,ta as RegionalBiasJudge,sa as ReligiousBiasJudge,S as ResponseSchema,Q as SYSTEM_PROMPT,ma as SummarizationCoherenceJudge,la as SummarizationConsistencyJudge,E as TASK_ERROR_SCORE_NAME,Ba as TestSuite,C as TestSuiteResult,v as ThreadsAnnotationQueue,u as TracesAnnotationQueue,R as USER_PROMPT_TEMPLATE,ga as Usefulness,M as VercelAIChatModel,y as activateRunner,w as agentConfigContext,D as buildSuiteResult,N as createModel,O as createModelFromInstance,V as deserializeEvaluators,L as detectProvider,c as disableLogger,_ as evaluate,$ as evaluatePrompt,Y as evaluateTestSuite,x as flushAll,h as generateId,Ga as getDistributedTraceHeaders,o as getGlobalClient,z as getTrackContext,e as isTracingActive,a as logger,q as resetGlobalClient,f as resetTracingToConfigDefault,ya as resolveEvaluators,W as resolveExecutionPolicy,X as resolveItemExecutionPolicy,P as resolveModel,Z as runTests,U as serializeEvaluators,p as setGlobalClient,b as setLoggerLevel,d as setTracingActive,A as track,za as validateEvaluators,Aa as validateExecutionPolicy,Ha as z}from'./chunk-UWEW2JHE.js';Ia();
1
+ import {Ia}from'./chunk-6AIUIPIA.js';export{va as AgentTaskCompletionJudge,ua as AgentToolCorrectnessJudge,ia as AnswerRelevance,ea as BaseLLMJudgeMetric,F as BaseMetric,G as BaseSuiteEvaluator,s as ChatPrompt,xa as ComplianceRiskJudge,l as ConfigMismatchError,k as ConfigNotFoundError,ba as Contains,B as DEFAULT_EXECUTION_POLICY,m as Dataset,i as DatasetVersion,j as DatasetVersionNotFoundError,pa as DemographicBiasJudge,na as DialogueHelpfulnessJudge,aa as ExactMatch,ja as GEval,ka as GEvalPreset,ra as GenderBiasJudge,ha as Hallucination,da as IsJson,T as LLMJudge,K as ModelConfigurationError,I as ModelError,J as ModelGenerationError,fa as Moderation,Fa as OPIK_PARENT_SPAN_ID_HEADER,Ea as OPIK_TRACE_ID_HEADER,Da as Opik,H as OpikBaseModel,t as OpikQueryLanguage,g as OpikSpanType,qa as PoliticalBiasJudge,r as Prompt,n as PromptType,wa as PromptUncertaintyJudge,oa as QARelevanceJudge,ca as RegexMatch,ta as RegionalBiasJudge,sa as ReligiousBiasJudge,S as ResponseSchema,Q as SYSTEM_PROMPT,ma as SummarizationCoherenceJudge,la as SummarizationConsistencyJudge,E as TASK_ERROR_SCORE_NAME,Ba as TestSuite,C as TestSuiteResult,v as ThreadsAnnotationQueue,u as TracesAnnotationQueue,R as USER_PROMPT_TEMPLATE,ga as Usefulness,M as VercelAIChatModel,y as activateRunner,w as agentConfigContext,D as buildSuiteResult,N as createModel,O as createModelFromInstance,V as deserializeEvaluators,L as detectProvider,c as disableLogger,_ as evaluate,$ as evaluatePrompt,Y as evaluateTestSuite,x as flushAll,h as generateId,Ga as getDistributedTraceHeaders,o as getGlobalClient,z as getTrackContext,e as isTracingActive,a as logger,q as resetGlobalClient,f as resetTracingToConfigDefault,ya as resolveEvaluators,W as resolveExecutionPolicy,X as resolveItemExecutionPolicy,P as resolveModel,Z as runTests,U as serializeEvaluators,p as setGlobalClient,b as setLoggerLevel,d as setTracingActive,A as track,za as validateEvaluators,Aa as validateExecutionPolicy,Ha as z}from'./chunk-6AIUIPIA.js';Ia();
@@ -1 +1 @@
1
- import {Ca}from'./chunk-UWEW2JHE.js';export{B as DEFAULT_EXECUTION_POLICY,Ba as TestSuite,C as TestSuiteResult,D as buildSuiteResult,V as deserializeEvaluators,Y as evaluateTestSuite,W as resolveExecutionPolicy,X as resolveItemExecutionPolicy,Z as runTests,U as serializeEvaluators}from'./chunk-UWEW2JHE.js';Ca();
1
+ import {Ca}from'./chunk-6AIUIPIA.js';export{B as DEFAULT_EXECUTION_POLICY,Ba as TestSuite,C as TestSuiteResult,D as buildSuiteResult,V as deserializeEvaluators,Y as evaluateTestSuite,W as resolveExecutionPolicy,X as resolveItemExecutionPolicy,Z as runTests,U as serializeEvaluators}from'./chunk-6AIUIPIA.js';Ca();
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.2.2",
4
+ "version": "2.2.4",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+https://github.com/comet-ml/opik.git",