@e-llm-studio/instant-learning 0.0.300 → 0.0.301
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/cjs/features/IL-OTJ/ILOTJ.js +1 -1
- package/dist/cjs/features/IL-OTJ/ILOTJTest.js +1 -1
- package/dist/cjs/features/IL-OTJ/_components/templates/RuleComparison/RuleComparison.js +1 -1
- package/dist/features/IL-OTJ/ILOTJ.js +1 -1
- package/dist/features/IL-OTJ/ILOTJTest.js +1 -1
- package/dist/features/IL-OTJ/_components/templates/RuleComparison/RuleComparison.js +1 -1
- package/dist/types/src/features/IL-OTJ/ILOTJ.d.ts.map +1 -1
- package/dist/types/src/features/IL-OTJ/ILOTJTest.d.ts.map +1 -1
- package/dist/types/src/features/IL-OTJ/_components/ChatComponents/mockComparisonData.d.ts +1113 -251
- package/dist/types/src/features/IL-OTJ/_components/ChatComponents/mockComparisonData.d.ts.map +1 -1
- package/dist/types/src/features/IL-OTJ/_components/templates/RuleComparison/RuleComparison.d.ts +8 -41
- package/dist/types/src/features/IL-OTJ/_components/templates/RuleComparison/RuleComparison.d.ts.map +1 -1
- package/package.json +2 -1
package/dist/types/src/features/IL-OTJ/_components/ChatComponents/mockComparisonData.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mockComparisonData.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/IL-OTJ/_components/ChatComponents/mockComparisonData.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"mockComparisonData.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/IL-OTJ/_components/ChatComponents/mockComparisonData.ts"],"names":[],"mappings":"AAo7BA,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAavC,CAAC"}
|
package/dist/types/src/features/IL-OTJ/_components/templates/RuleComparison/RuleComparison.d.ts
CHANGED
|
@@ -1,56 +1,23 @@
|
|
|
1
|
-
interface ComparisonFieldAnalysis {
|
|
2
|
-
relation: string;
|
|
3
|
-
score: number;
|
|
4
|
-
highlights?: {
|
|
5
|
-
ruleA_spans?: string[];
|
|
6
|
-
ruleB_spans?: string[];
|
|
7
|
-
};
|
|
8
|
-
}
|
|
9
|
-
interface ComparisonAnalysis {
|
|
10
|
-
rule_difference_comparison: {
|
|
11
|
-
summary: {
|
|
12
|
-
overall_score: number;
|
|
13
|
-
overall_summary: string;
|
|
14
|
-
};
|
|
15
|
-
fields: {
|
|
16
|
-
title: ComparisonFieldAnalysis;
|
|
17
|
-
scope: ComparisonFieldAnalysis;
|
|
18
|
-
description: ComparisonFieldAnalysis;
|
|
19
|
-
when_to_apply: {
|
|
20
|
-
score: number;
|
|
21
|
-
mappings: any[];
|
|
22
|
-
};
|
|
23
|
-
when_not_to_apply: {
|
|
24
|
-
score: number;
|
|
25
|
-
mappings: any[];
|
|
26
|
-
};
|
|
27
|
-
};
|
|
28
|
-
};
|
|
29
|
-
}
|
|
30
1
|
interface RuleData {
|
|
31
2
|
id: string;
|
|
32
3
|
title: string;
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
wta: string;
|
|
36
|
-
wnta: string;
|
|
37
|
-
similarity?: number;
|
|
38
|
-
summaryText?: string;
|
|
39
|
-
variantType?: string;
|
|
40
|
-
tierName?: string;
|
|
41
|
-
analysis?: ComparisonAnalysis;
|
|
4
|
+
similarityScoreText?: string;
|
|
5
|
+
scope?: string;
|
|
42
6
|
isLoading?: boolean;
|
|
7
|
+
intentTreeData?: any;
|
|
8
|
+
behaviorTreeData?: any;
|
|
9
|
+
intentDeviationData?: any;
|
|
10
|
+
behaviorDeviationData?: any;
|
|
43
11
|
}
|
|
44
12
|
export interface RuleComparisonProps {
|
|
45
|
-
proposedRule
|
|
13
|
+
proposedRule?: any;
|
|
46
14
|
variants?: RuleData[];
|
|
47
15
|
onSelectVariant: (variant: RuleData) => void;
|
|
48
16
|
onAddAsVariant?: () => void;
|
|
49
17
|
onSkip?: () => void;
|
|
50
18
|
onBack?: () => void;
|
|
51
19
|
targetVariantId?: string | null;
|
|
52
|
-
highlightedField?: string | null;
|
|
53
20
|
}
|
|
54
|
-
declare const RuleComparison: ({
|
|
21
|
+
declare const RuleComparison: ({ variants, onSelectVariant, onSkip, onBack, targetVariantId, }: RuleComparisonProps) => import("react/jsx-runtime").JSX.Element;
|
|
55
22
|
export default RuleComparison;
|
|
56
23
|
//# sourceMappingURL=RuleComparison.d.ts.map
|
package/dist/types/src/features/IL-OTJ/_components/templates/RuleComparison/RuleComparison.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RuleComparison.d.ts","sourceRoot":"","sources":["../../../../../../../../src/features/IL-OTJ/_components/templates/RuleComparison/RuleComparison.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"RuleComparison.d.ts","sourceRoot":"","sources":["../../../../../../../../src/features/IL-OTJ/_components/templates/RuleComparison/RuleComparison.tsx"],"names":[],"mappings":"AAKA,UAAU,QAAQ;IAChB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,OAAO,CAAC;IAGpB,cAAc,CAAC,EAAE,GAAG,CAAC;IACrB,gBAAgB,CAAC,EAAE,GAAG,CAAC;IACvB,mBAAmB,CAAC,EAAE,GAAG,CAAC;IAC1B,qBAAqB,CAAC,EAAE,GAAG,CAAC;CAC7B;AAED,MAAM,WAAW,mBAAmB;IAClC,YAAY,CAAC,EAAE,GAAG,CAAC;IACnB,QAAQ,CAAC,EAAE,QAAQ,EAAE,CAAC;IACtB,eAAe,EAAE,CAAC,OAAO,EAAE,QAAQ,KAAK,IAAI,CAAC;IAC7C,cAAc,CAAC,EAAE,MAAM,IAAI,CAAC;IAC5B,MAAM,CAAC,EAAE,MAAM,IAAI,CAAC;IACpB,MAAM,CAAC,EAAE,MAAM,IAAI,CAAC;IACpB,eAAe,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CACjC;AA6FD,QAAA,MAAM,cAAc,oEAMjB,mBAAmB,4CAgLrB,CAAC;AAEF,eAAe,cAAc,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@e-llm-studio/instant-learning",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.301",
|
|
4
4
|
"author": "Devesh Patel",
|
|
5
5
|
"description": "",
|
|
6
6
|
"license": "MIT",
|
|
@@ -140,6 +140,7 @@
|
|
|
140
140
|
"@craco/craco": "^7.1.0",
|
|
141
141
|
"@e-llm-studio/citation": "^0.0.165",
|
|
142
142
|
"@e-llm-studio/watch-me-work": "^0.0.25",
|
|
143
|
+
"@viswa-test/test-citation": "^0.0.39",
|
|
143
144
|
"pdf-collaborative-tool": "^0.7.0",
|
|
144
145
|
"primeicons": "^7.0.0",
|
|
145
146
|
"primereact": "^10.9.7",
|