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 c7c4047 commit ab7bf5cCopy full SHA for ab7bf5c
docs/code_samples/workflow_execution.txt
@@ -18,11 +18,16 @@ public class SimpleMindeeClient {
18
// Load a file from disk
19
LocalInputSource inputSource = new LocalInputSource(filePath);
20
21
- // Parse the file
+ // Send the file to a workflow
22
WorkflowResponse.Default response = mindeeClient.executeWorkflow(
23
workflowId,
24
inputSource
25
- System.out.println(response.toString());
+
26
+ // Print the workflow ID.
27
+ System.out.println(response.getExecution().getId());
28
29
+ // Print the inference result.
30
+ // System.out.println(response.getExecution().getInference());
31
32
}
33
0 commit comments