@eqproject/eqp-dynamic-module 2.10.89 → 2.10.90
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 +98 -14
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +101 -15
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +97 -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 +12 -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,10 @@ export declare class EqpDynamicModuleConfiguratorComponent implements OnInit, Af
|
|
|
174
175
|
aiEditFieldContext: {
|
|
175
176
|
code: string;
|
|
176
177
|
} | null;
|
|
178
|
+
lastPromptSplits: string[];
|
|
179
|
+
private _aiEditSplitCount;
|
|
180
|
+
get aiEditSplitCount(): number;
|
|
181
|
+
set aiEditSplitCount(value: number);
|
|
177
182
|
aiFieldSuggestLoading: boolean;
|
|
178
183
|
formGraphicSuggestLoading: boolean;
|
|
179
184
|
formGraphicSuggestHint: string;
|
|
@@ -189,12 +194,18 @@ export declare class EqpDynamicModuleConfiguratorComponent implements OnInit, Af
|
|
|
189
194
|
currentAiDataGetterField: BaseField | null;
|
|
190
195
|
aiDataGetterLoading: boolean;
|
|
191
196
|
get aiPromptHistory(): string[];
|
|
192
|
-
private readonly
|
|
197
|
+
private readonly AI_SKILL_TOKENS;
|
|
193
198
|
private readonly AI_TOKENS_PER_FIELD;
|
|
194
199
|
private readonly AI_OUTPUT_TOKENS;
|
|
195
200
|
private readonly AI_PDF_CHARS;
|
|
196
201
|
private readonly AI_CHARS_PER_TOKEN;
|
|
197
202
|
private readonly AI_EUR_USD_RATE;
|
|
203
|
+
get aiEditDetectedModelId(): string;
|
|
204
|
+
get aiEditDetectedModelLabel(): string;
|
|
205
|
+
private get aiEditPricing();
|
|
206
|
+
private computeAiEditSplitCosts;
|
|
207
|
+
get aiEditSplitWarmUpApplies(): boolean;
|
|
208
|
+
private computeAiEditCostUsd;
|
|
198
209
|
get aiEditCostFirstEur(): number;
|
|
199
210
|
get aiEditCostSubsequentEur(): number;
|
|
200
211
|
formatAiEditCost(eur: number): string;
|