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 5267455 commit 0559c97Copy full SHA for 0559c97
docs/extras/code_samples/default_v2.txt
@@ -7,7 +7,7 @@ model_id = "MY_MODEL_ID"
7
# Init a new client
8
mindee_client = ClientV2(api_key)
9
10
-# Set inference paramters
+# Set inference parameters
11
params = InferenceParameters(
12
# ID of the model, required.
13
model_id=model_id,
@@ -18,7 +18,7 @@ params = InferenceParameters(
18
# Load a file from disk
19
input_source = mindee_client.source_from_path(input_path)
20
21
-# Upload the file
+# Send for processing
22
response = mindee_client.enqueue_and_get_inference(
23
input_source, params
24
)
0 commit comments