@eqproject/eqp-dynamic-module 2.10.89 → 2.10.91
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/esm2020/lib/components/exported/eqp-dynamic-module-configurator/eqp-dynamic-module-configurator.component.mjs +121 -14
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +124 -15
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +120 -13
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/lib/components/exported/eqp-dynamic-module-configurator/eqp-dynamic-module-configurator.component.d.ts +16 -1
- package/package.json +1 -1
|
@@ -89,6 +89,7 @@ export declare class EqpDynamicModuleConfiguratorComponent implements OnInit, Af
|
|
|
89
89
|
private static readonly FIELD_TYPE_LABELS;
|
|
90
90
|
private static readonly FIELD_TYPE_CSS_CLASS;
|
|
91
91
|
private static readonly MODEL_MAP;
|
|
92
|
+
private static readonly AI_MODEL_PRICING;
|
|
92
93
|
private extractModelFromText;
|
|
93
94
|
onFormGraphicSuggest(): void;
|
|
94
95
|
fieldsColumns: Array<ConfigColumn>;
|
|
@@ -174,6 +175,14 @@ export declare class EqpDynamicModuleConfiguratorComponent implements OnInit, Af
|
|
|
174
175
|
aiEditFieldContext: {
|
|
175
176
|
code: string;
|
|
176
177
|
} | null;
|
|
178
|
+
lastPromptSplits: string[];
|
|
179
|
+
private static readonly AI_MIN_SPLIT_COUNT;
|
|
180
|
+
private static readonly AI_MAX_SPLIT_COUNT;
|
|
181
|
+
private _aiEditSplitCount;
|
|
182
|
+
get aiEditSplitCount(): number;
|
|
183
|
+
set aiEditSplitCount(value: number);
|
|
184
|
+
incrementAiEditSplitCount(): void;
|
|
185
|
+
decrementAiEditSplitCount(): void;
|
|
177
186
|
aiFieldSuggestLoading: boolean;
|
|
178
187
|
formGraphicSuggestLoading: boolean;
|
|
179
188
|
formGraphicSuggestHint: string;
|
|
@@ -189,12 +198,18 @@ export declare class EqpDynamicModuleConfiguratorComponent implements OnInit, Af
|
|
|
189
198
|
currentAiDataGetterField: BaseField | null;
|
|
190
199
|
aiDataGetterLoading: boolean;
|
|
191
200
|
get aiPromptHistory(): string[];
|
|
192
|
-
private readonly
|
|
201
|
+
private readonly AI_SKILL_TOKENS;
|
|
193
202
|
private readonly AI_TOKENS_PER_FIELD;
|
|
194
203
|
private readonly AI_OUTPUT_TOKENS;
|
|
195
204
|
private readonly AI_PDF_CHARS;
|
|
196
205
|
private readonly AI_CHARS_PER_TOKEN;
|
|
197
206
|
private readonly AI_EUR_USD_RATE;
|
|
207
|
+
get aiEditDetectedModelId(): string;
|
|
208
|
+
get aiEditDetectedModelLabel(): string;
|
|
209
|
+
private get aiEditPricing();
|
|
210
|
+
private computeAiEditSplitCosts;
|
|
211
|
+
get aiEditSplitWarmUpApplies(): boolean;
|
|
212
|
+
private computeAiEditCostUsd;
|
|
198
213
|
get aiEditCostFirstEur(): number;
|
|
199
214
|
get aiEditCostSubsequentEur(): number;
|
|
200
215
|
formatAiEditCost(eur: number): string;
|