digicust_types 1.8.279 → 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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.8.279",
3
+ "version": "1.8.280",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",