@juhuu/sdk-ts 1.2.51 → 1.2.52
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.mts +8 -0
- package/dist/index.d.ts +8 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
@@ -1330,6 +1330,7 @@ declare namespace JUHUU {
|
|
1330
1330
|
languageCodeArray: LanguageCode[];
|
1331
1331
|
embeddingsGenerated: boolean;
|
1332
1332
|
autoTranslateEnabled: boolean;
|
1333
|
+
embeddingsGenerationEnabled: boolean;
|
1333
1334
|
};
|
1334
1335
|
namespace Create {
|
1335
1336
|
type Params = {
|
@@ -1498,6 +1499,13 @@ declare namespace JUHUU {
|
|
1498
1499
|
export interface AiChatMessage extends Base {
|
1499
1500
|
type: "ai";
|
1500
1501
|
articleEmbeddingArray: JUHUU.ArticleEmbedding.Object[];
|
1502
|
+
starRating: 1 | 2 | 3 | 4 | 5 | null;
|
1503
|
+
feedbackText: string | null;
|
1504
|
+
contradictionDetection: {
|
1505
|
+
status: "neutral" | "contradiction" | "entailment";
|
1506
|
+
contradictionConfidence: number;
|
1507
|
+
isContradiction: boolean;
|
1508
|
+
} | null;
|
1501
1509
|
}
|
1502
1510
|
export type Object = AiChatMessage | UserChatMessage;
|
1503
1511
|
export namespace Create {
|
package/dist/index.d.ts
CHANGED
@@ -1330,6 +1330,7 @@ declare namespace JUHUU {
|
|
1330
1330
|
languageCodeArray: LanguageCode[];
|
1331
1331
|
embeddingsGenerated: boolean;
|
1332
1332
|
autoTranslateEnabled: boolean;
|
1333
|
+
embeddingsGenerationEnabled: boolean;
|
1333
1334
|
};
|
1334
1335
|
namespace Create {
|
1335
1336
|
type Params = {
|
@@ -1498,6 +1499,13 @@ declare namespace JUHUU {
|
|
1498
1499
|
export interface AiChatMessage extends Base {
|
1499
1500
|
type: "ai";
|
1500
1501
|
articleEmbeddingArray: JUHUU.ArticleEmbedding.Object[];
|
1502
|
+
starRating: 1 | 2 | 3 | 4 | 5 | null;
|
1503
|
+
feedbackText: string | null;
|
1504
|
+
contradictionDetection: {
|
1505
|
+
status: "neutral" | "contradiction" | "entailment";
|
1506
|
+
contradictionConfidence: number;
|
1507
|
+
isContradiction: boolean;
|
1508
|
+
} | null;
|
1501
1509
|
}
|
1502
1510
|
export type Object = AiChatMessage | UserChatMessage;
|
1503
1511
|
export namespace Create {
|