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.
- package/dist/{Client-Cm3T8rMF.d.cts → Client-D_935KS9.d.cts} +7 -0
- package/dist/{Client-Cm3T8rMF.d.ts → Client-D_935KS9.d.ts} +7 -0
- package/dist/chunk-DTTZ3ROB.js +9 -0
- package/dist/index.cjs +7 -7
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -1
- package/dist/vercel/index.cjs +7 -7
- package/dist/vercel/index.d.cts +1 -1
- package/dist/vercel/index.d.ts +1 -1
- package/dist/vercel/index.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-OWLBQI5M.js +0 -9
|
@@ -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
|
|