We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0acd87 commit 30b69c0Copy full SHA for 30b69c0
code_samples/default_v2.txt
@@ -11,8 +11,18 @@ mindee_client = ClientV2(api_key)
11
params = InferenceParameters(
12
# ID of the model, required.
13
model_id=model_id,
14
- # If set to `True`, will enable Retrieval-Augmented Generation.
15
- rag=False,
+
+ # Options: set to `True` or `False` to override defaults
16
17
+ # Enhance extraction accuracy with Retrieval-Augmented Generation.
18
+ rag=None,
19
+ # Extract the full text content from the document as strings.
20
+ raw_text=None,
21
+ # Calculate bounding box polygons for all fields.
22
+ polygon=None,
23
+ # Boost the precision and accuracy of all extractions.
24
+ # Calculate confidence scores for all fields.
25
+ confidence=None,
26
)
27
28
# Load a file from disk
0 commit comments