digicust_types 1.8.278 → 1.8.280
Sign up to get free protection for your applications and to get access to all the features.
@@ -41,9 +41,17 @@ export interface ExecutionStrategy {
|
|
41
41
|
defaultProcedureMode?: ProcedureMode;
|
42
42
|
dataExtraction?: {
|
43
43
|
active?: boolean;
|
44
|
-
engine?: "default" | "dexter_experimental";
|
44
|
+
engine?: "default" | "dexter_experimental" | "llm";
|
45
|
+
llmOptions?: {
|
46
|
+
classificationRemarks?: string;
|
47
|
+
extractionRemarks?: {
|
48
|
+
documentType?: DigicustDocumentType | null;
|
49
|
+
sendToFallbackEngine?: boolean;
|
50
|
+
remarks?: string;
|
51
|
+
}[];
|
52
|
+
};
|
45
53
|
/**
|
46
|
-
*
|
54
|
+
* Whether to classify using dexter classification or let user manually classify
|
47
55
|
*/
|
48
56
|
classifyUsingDexter?: boolean;
|
49
57
|
engineSpecification?: string;
|