@juhuu/sdk-ts 1.2.50 → 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 +10 -0
- package/dist/index.d.ts +10 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
@@ -1328,6 +1328,9 @@ declare namespace JUHUU {
|
|
1328
1328
|
lastUpdatedAt: Date;
|
1329
1329
|
createdAt: Date;
|
1330
1330
|
languageCodeArray: LanguageCode[];
|
1331
|
+
embeddingsGenerated: boolean;
|
1332
|
+
autoTranslateEnabled: boolean;
|
1333
|
+
embeddingsGenerationEnabled: boolean;
|
1331
1334
|
};
|
1332
1335
|
namespace Create {
|
1333
1336
|
type Params = {
|
@@ -1496,6 +1499,13 @@ declare namespace JUHUU {
|
|
1496
1499
|
export interface AiChatMessage extends Base {
|
1497
1500
|
type: "ai";
|
1498
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;
|
1499
1509
|
}
|
1500
1510
|
export type Object = AiChatMessage | UserChatMessage;
|
1501
1511
|
export namespace Create {
|
package/dist/index.d.ts
CHANGED
@@ -1328,6 +1328,9 @@ declare namespace JUHUU {
|
|
1328
1328
|
lastUpdatedAt: Date;
|
1329
1329
|
createdAt: Date;
|
1330
1330
|
languageCodeArray: LanguageCode[];
|
1331
|
+
embeddingsGenerated: boolean;
|
1332
|
+
autoTranslateEnabled: boolean;
|
1333
|
+
embeddingsGenerationEnabled: boolean;
|
1331
1334
|
};
|
1332
1335
|
namespace Create {
|
1333
1336
|
type Params = {
|
@@ -1496,6 +1499,13 @@ declare namespace JUHUU {
|
|
1496
1499
|
export interface AiChatMessage extends Base {
|
1497
1500
|
type: "ai";
|
1498
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;
|
1499
1509
|
}
|
1500
1510
|
export type Object = AiChatMessage | UserChatMessage;
|
1501
1511
|
export namespace Create {
|