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
- * Weather to classify using dexter classification or let user manually classify
54
+ * Whether to classify using dexter classification or let user manually classify
47
55
  */
48
56
  classifyUsingDexter?: boolean;
49
57
  engineSpecification?: string;
@@ -15,6 +15,7 @@ export interface Bbox {
15
15
  * Bottom right y
16
16
  */
17
17
  y2: number;
18
+ document?: string;
18
19
  /**
19
20
  * Optional page reference
20
21
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.8.278",
3
+ "version": "1.8.280",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",