opik 1.8.0 → 1.8.2

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.
@@ -701,6 +701,8 @@ interface GetPromptsRequest {
701
701
  page?: number;
702
702
  size?: number;
703
703
  name?: string;
704
+ sorting?: string;
705
+ filters?: string;
704
706
  }
705
707
 
706
708
  /**
@@ -721,6 +723,7 @@ interface PromptWrite {
721
723
  metadata?: JsonNodeWrite;
722
724
  changeDescription?: string;
723
725
  type?: PromptWriteType;
726
+ tags?: string[];
724
727
  }
725
728
 
726
729
  /**
@@ -753,6 +756,7 @@ interface CreatePromptVersionDetail {
753
756
  interface PromptUpdatable {
754
757
  name: string;
755
758
  description?: string;
759
+ tags?: string[];
756
760
  }
757
761
 
758
762
  /**
@@ -3692,6 +3696,7 @@ interface PromptDetail {
3692
3696
  id?: string;
3693
3697
  name: string;
3694
3698
  description?: string;
3699
+ tags?: string[];
3695
3700
  createdAt?: Date;
3696
3701
  createdBy?: string;
3697
3702
  lastUpdatedAt?: Date;
@@ -3756,6 +3761,7 @@ interface PromptPublic {
3756
3761
  id?: string;
3757
3762
  name: string;
3758
3763
  description?: string;
3764
+ tags?: string[];
3759
3765
  createdAt?: Date;
3760
3766
  createdBy?: string;
3761
3767
  lastUpdatedAt?: Date;
@@ -3768,6 +3774,7 @@ interface PromptPublic {
3768
3774
  */
3769
3775
  interface ServiceTogglesConfig {
3770
3776
  pythonEvaluatorEnabled: boolean;
3777
+ traceThreadPythonEvaluatorEnabled: boolean;
3771
3778
  guardrailsEnabled: boolean;
3772
3779
  }
3773
3780
 
@@ -701,6 +701,8 @@ interface GetPromptsRequest {
701
701
  page?: number;
702
702
  size?: number;
703
703
  name?: string;
704
+ sorting?: string;
705
+ filters?: string;
704
706
  }
705
707
 
706
708
  /**
@@ -721,6 +723,7 @@ interface PromptWrite {
721
723
  metadata?: JsonNodeWrite;
722
724
  changeDescription?: string;
723
725
  type?: PromptWriteType;
726
+ tags?: string[];
724
727
  }
725
728
 
726
729
  /**
@@ -753,6 +756,7 @@ interface CreatePromptVersionDetail {
753
756
  interface PromptUpdatable {
754
757
  name: string;
755
758
  description?: string;
759
+ tags?: string[];
756
760
  }
757
761
 
758
762
  /**
@@ -3692,6 +3696,7 @@ interface PromptDetail {
3692
3696
  id?: string;
3693
3697
  name: string;
3694
3698
  description?: string;
3699
+ tags?: string[];
3695
3700
  createdAt?: Date;
3696
3701
  createdBy?: string;
3697
3702
  lastUpdatedAt?: Date;
@@ -3756,6 +3761,7 @@ interface PromptPublic {
3756
3761
  id?: string;
3757
3762
  name: string;
3758
3763
  description?: string;
3764
+ tags?: string[];
3759
3765
  createdAt?: Date;
3760
3766
  createdBy?: string;
3761
3767
  lastUpdatedAt?: Date;
@@ -3768,6 +3774,7 @@ interface PromptPublic {
3768
3774
  */
3769
3775
  interface ServiceTogglesConfig {
3770
3776
  pythonEvaluatorEnabled: boolean;
3777
+ traceThreadPythonEvaluatorEnabled: boolean;
3771
3778
  guardrailsEnabled: boolean;
3772
3779
  }
3773
3780