@eqproject/eqp-dynamic-module 2.10.88 → 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 +108 -18
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +111 -19
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +107 -17
- 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 +14 -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,11 +175,17 @@ 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;
|
|
180
185
|
showFormGraphicSuggestInput: boolean;
|
|
181
186
|
formGraphicScope: string;
|
|
187
|
+
generateBackground: boolean;
|
|
188
|
+
aiGenerateBackground: boolean;
|
|
182
189
|
presentFieldTypeOptions: {
|
|
183
190
|
value: string;
|
|
184
191
|
label: string;
|
|
@@ -187,12 +194,18 @@ export declare class EqpDynamicModuleConfiguratorComponent implements OnInit, Af
|
|
|
187
194
|
currentAiDataGetterField: BaseField | null;
|
|
188
195
|
aiDataGetterLoading: boolean;
|
|
189
196
|
get aiPromptHistory(): string[];
|
|
190
|
-
private readonly
|
|
197
|
+
private readonly AI_SKILL_TOKENS;
|
|
191
198
|
private readonly AI_TOKENS_PER_FIELD;
|
|
192
199
|
private readonly AI_OUTPUT_TOKENS;
|
|
193
200
|
private readonly AI_PDF_CHARS;
|
|
194
201
|
private readonly AI_CHARS_PER_TOKEN;
|
|
195
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;
|
|
196
209
|
get aiEditCostFirstEur(): number;
|
|
197
210
|
get aiEditCostSubsequentEur(): number;
|
|
198
211
|
formatAiEditCost(eur: number): string;
|