@e-llm-studio/instant-learning 0.0.210 → 0.0.212

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.
@@ -1 +1 @@
1
- {"version":3,"file":"ILOTJTest.d.ts","sourceRoot":"","sources":["../../../../../src/features/IL-OTJ/ILOTJTest.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAoD,MAAM,OAAO,CAAC;AAKzE,OAAO,EAA8C,oBAAoB,EAAuB,MAAM,iBAAiB,CAAC;AASxH,MAAM,MAAM,qBAAqB,GAAG,MAAM,CAAC,MAAM,EAAE,oBAAoB,CAAC,CAAC;AAEzE,UAAU,UAAU;CACnB;AAKD,MAAM,WAAW,qBAAqB;IACpC,WAAW,EAAE,MAAM,EAAE,CAAC;CACvB;AAKD,eAAO,MAAM,cAAc,YAAmB,qBAAqB,iBASlE,CAAC;AAEF,QAAA,MAAM,SAAS,EAAE,KAAK,CAAC,EAAE,CAAC,UAAU,CAgkEnC,CAAC;AAEF,eAAe,SAAS,CAAC"}
1
+ {"version":3,"file":"ILOTJTest.d.ts","sourceRoot":"","sources":["../../../../../src/features/IL-OTJ/ILOTJTest.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAoD,MAAM,OAAO,CAAC;AAKzE,OAAO,EAA8C,oBAAoB,EAAuB,MAAM,iBAAiB,CAAC;AAUxH,MAAM,MAAM,qBAAqB,GAAG,MAAM,CAAC,MAAM,EAAE,oBAAoB,CAAC,CAAC;AAEzE,UAAU,UAAU;CACnB;AAKD,MAAM,WAAW,qBAAqB;IACpC,WAAW,EAAE,MAAM,EAAE,CAAC;CACvB;AAKD,eAAO,MAAM,cAAc,YAAmB,qBAAqB,iBASlE,CAAC;AAEF,QAAA,MAAM,SAAS,EAAE,KAAK,CAAC,EAAE,CAAC,UAAU,CA0oEnC,CAAC;AAEF,eAAe,SAAS,CAAC"}
@@ -0,0 +1,223 @@
1
+ export declare const mockComparisonData: ({
2
+ current_rule_details: {
3
+ rule_title: string;
4
+ description: string;
5
+ wta: string[];
6
+ wnta: string[];
7
+ scope: string;
8
+ };
9
+ variant_rule_details: {
10
+ variant_title: string;
11
+ variant_text: string;
12
+ when_to_apply: string[];
13
+ when_not_to_apply: string[];
14
+ scope: string;
15
+ variant_id: string;
16
+ };
17
+ rule_difference_comparison: {
18
+ summary: {
19
+ overall_score: number;
20
+ overall_summary: string;
21
+ };
22
+ fields: {
23
+ title: {
24
+ relation: string;
25
+ score: number;
26
+ };
27
+ scope: {
28
+ relation: string;
29
+ score: number;
30
+ };
31
+ description: {
32
+ relation: string;
33
+ score: number;
34
+ highlights: {
35
+ ruleA_spans: string[];
36
+ ruleB_spans: string[];
37
+ };
38
+ };
39
+ when_to_apply: {
40
+ score: number;
41
+ mappings: {
42
+ relation: string;
43
+ score: number;
44
+ highlights: {
45
+ ruleA_spans: string[];
46
+ ruleB_spans: string[];
47
+ };
48
+ }[];
49
+ };
50
+ when_not_to_apply: {
51
+ score: number;
52
+ mappings: {
53
+ relation: string;
54
+ score: number;
55
+ }[];
56
+ };
57
+ };
58
+ };
59
+ } | {
60
+ current_rule_details: {
61
+ rule_title: string;
62
+ description: string;
63
+ wta: string[];
64
+ wnta: string[];
65
+ scope: string;
66
+ };
67
+ variant_rule_details: {
68
+ variant_title: string;
69
+ variant_text: string;
70
+ when_to_apply: string[];
71
+ when_not_to_apply: string[];
72
+ scope: string;
73
+ variant_id: string;
74
+ };
75
+ rule_difference_comparison: {
76
+ summary: {
77
+ overall_score: number;
78
+ overall_summary: string;
79
+ };
80
+ fields: {
81
+ title: {
82
+ relation: string;
83
+ score: number;
84
+ };
85
+ scope: {
86
+ relation: string;
87
+ score: number;
88
+ };
89
+ description: {
90
+ relation: string;
91
+ score: number;
92
+ highlights?: undefined;
93
+ };
94
+ when_to_apply: {
95
+ score: number;
96
+ mappings: {
97
+ relation: string;
98
+ score: number;
99
+ }[];
100
+ };
101
+ when_not_to_apply: {
102
+ score: number;
103
+ mappings: {
104
+ relation: string;
105
+ score: number;
106
+ }[];
107
+ };
108
+ };
109
+ };
110
+ } | {
111
+ current_rule_details: {
112
+ rule_title: string;
113
+ description: string;
114
+ wta: string[];
115
+ wnta: string[];
116
+ scope: string;
117
+ };
118
+ variant_rule_details: {
119
+ variant_title: string;
120
+ variant_text: string;
121
+ when_to_apply: string[];
122
+ when_not_to_apply: string[];
123
+ scope: string;
124
+ variant_id: string;
125
+ };
126
+ rule_difference_comparison: {
127
+ summary: {
128
+ overall_score: number;
129
+ overall_summary: string;
130
+ };
131
+ fields: {
132
+ title: {
133
+ relation: string;
134
+ score: number;
135
+ };
136
+ scope: {
137
+ relation: string;
138
+ score: number;
139
+ };
140
+ description: {
141
+ relation: string;
142
+ score: number;
143
+ highlights: {
144
+ ruleA_spans: string[];
145
+ ruleB_spans: string[];
146
+ };
147
+ };
148
+ when_to_apply: {
149
+ score: number;
150
+ mappings: {
151
+ relation: string;
152
+ score: number;
153
+ }[];
154
+ };
155
+ when_not_to_apply: {
156
+ score: number;
157
+ mappings: {
158
+ relation: string;
159
+ score: number;
160
+ }[];
161
+ };
162
+ };
163
+ };
164
+ } | {
165
+ current_rule_details: {
166
+ rule_title: string;
167
+ description: string;
168
+ wta: string[];
169
+ wnta: string[];
170
+ scope: string;
171
+ };
172
+ variant_rule_details: {
173
+ variant_title: string;
174
+ variant_text: string;
175
+ when_to_apply: string[];
176
+ when_not_to_apply: string[];
177
+ scope: string;
178
+ variant_id: string;
179
+ };
180
+ rule_difference_comparison: {
181
+ summary: {
182
+ overall_score: number;
183
+ overall_summary: string;
184
+ };
185
+ fields: {
186
+ title: {
187
+ relation: string;
188
+ score: number;
189
+ };
190
+ scope: {
191
+ relation: string;
192
+ score: number;
193
+ };
194
+ description: {
195
+ relation: string;
196
+ score: number;
197
+ highlights: {
198
+ ruleA_spans: string[];
199
+ ruleB_spans: string[];
200
+ };
201
+ };
202
+ when_to_apply: {
203
+ score: number;
204
+ mappings: {
205
+ relation: string;
206
+ score: number;
207
+ }[];
208
+ };
209
+ when_not_to_apply: {
210
+ score: number;
211
+ mappings: {
212
+ relation: string;
213
+ score: number;
214
+ highlights: {
215
+ ruleA_spans: string[];
216
+ ruleB_spans: string[];
217
+ };
218
+ }[];
219
+ };
220
+ };
221
+ };
222
+ })[];
223
+ //# sourceMappingURL=mockComparisonData.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"mockComparisonData.d.ts","sourceRoot":"","sources":["../../../../../../../src/features/IL-OTJ/_components/ChatComponents/mockComparisonData.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAiP9B,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"RuleComparison.d.ts","sourceRoot":"","sources":["../../../../../../../../src/features/IL-OTJ/_components/templates/RuleComparison/RuleComparison.tsx"],"names":[],"mappings":"AAOA,UAAU,uBAAuB;IAC/B,QAAQ,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE;QACX,WAAW,CAAC,EAAE,MAAM,EAAE,CAAC;QACvB,WAAW,CAAC,EAAE,MAAM,EAAE,CAAC;KACxB,CAAC;CACH;AAED,UAAU,kBAAkB;IAC1B,0BAA0B,EAAE;QAC1B,OAAO,EAAE;YACP,aAAa,EAAE,MAAM,CAAC;YACtB,eAAe,EAAE,MAAM,CAAC;SACzB,CAAC;QACF,MAAM,EAAE;YACN,KAAK,EAAE,uBAAuB,CAAC;YAC/B,KAAK,EAAE,uBAAuB,CAAC;YAC/B,WAAW,EAAE,uBAAuB,CAAC;YACrC,aAAa,EAAE;gBACb,KAAK,EAAE,MAAM,CAAC;gBACd,QAAQ,EAAE,GAAG,EAAE,CAAC;aACjB,CAAC;YACF,iBAAiB,EAAE;gBACjB,KAAK,EAAE,MAAM,CAAC;gBACd,QAAQ,EAAE,GAAG,EAAE,CAAC;aACjB,CAAC;SACH,CAAC;KACH,CAAC;CACH;AAED,UAAU,QAAQ;IAChB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;IACpB,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;IACb,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,kBAAkB,CAAC;IAC9B,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB;AAED,MAAM,WAAW,mBAAmB;IAClC,YAAY,EAAE,GAAG,CAAC;IAClB,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;IAChC,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAClC;AA8SD,QAAA,MAAM,cAAc,mHASjB,mBAAmB,4CA8arB,CAAC;AAEF,eAAe,cAAc,CAAC"}
1
+ {"version":3,"file":"RuleComparison.d.ts","sourceRoot":"","sources":["../../../../../../../../src/features/IL-OTJ/_components/templates/RuleComparison/RuleComparison.tsx"],"names":[],"mappings":"AAOA,UAAU,uBAAuB;IAC/B,QAAQ,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE;QACX,WAAW,CAAC,EAAE,MAAM,EAAE,CAAC;QACvB,WAAW,CAAC,EAAE,MAAM,EAAE,CAAC;KACxB,CAAC;CACH;AAED,UAAU,kBAAkB;IAC1B,0BAA0B,EAAE;QAC1B,OAAO,EAAE;YACP,aAAa,EAAE,MAAM,CAAC;YACtB,eAAe,EAAE,MAAM,CAAC;SACzB,CAAC;QACF,MAAM,EAAE;YACN,KAAK,EAAE,uBAAuB,CAAC;YAC/B,KAAK,EAAE,uBAAuB,CAAC;YAC/B,WAAW,EAAE,uBAAuB,CAAC;YACrC,aAAa,EAAE;gBACb,KAAK,EAAE,MAAM,CAAC;gBACd,QAAQ,EAAE,GAAG,EAAE,CAAC;aACjB,CAAC;YACF,iBAAiB,EAAE;gBACjB,KAAK,EAAE,MAAM,CAAC;gBACd,QAAQ,EAAE,GAAG,EAAE,CAAC;aACjB,CAAC;SACH,CAAC;KACH,CAAC;CACH;AAED,UAAU,QAAQ;IAChB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;IACpB,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;IACb,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,kBAAkB,CAAC;IAC9B,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB;AAED,MAAM,WAAW,mBAAmB;IAClC,YAAY,EAAE,GAAG,CAAC;IAClB,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;IAChC,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAClC;AA+SD,QAAA,MAAM,cAAc,mHASjB,mBAAmB,4CA0crB,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.210",
3
+ "version": "0.0.212",
4
4
  "author": "Devesh Patel",
5
5
  "description": "",
6
6
  "license": "MIT",