We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37265d9 commit efc09cdCopy full SHA for efc09cd
1 file changed
docs/code_samples/workflow_polling.txt
@@ -19,11 +19,13 @@ $customEndpoint = $mindeeClient->createEndpoint(
19
"my-version"
20
);
21
22
+// Set the workflow options
23
$options = new PredictMethodOptions();
24
$options->setRAG(true)->setWorkflowId($workflowId)->setEndpoint($customEndpoint);
25
26
// Enqueue the file to the workflow
-$response = $mindeeClient->enqueueAndParse(GeneratedV1::Class, $inputSource, $options);
27
-
+$response = $mindeeClient->enqueueAndParse(
28
+ GeneratedV1::Class, $inputSource, $options
29
+);
30
31
echo $response->document;
0 commit comments