Skip to content

Commit d6f9e8b

Browse files
committed
more updates
1 parent bf58913 commit d6f9e8b

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

README.adoc

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ A *job* is the process that sends data to a model, sets the model to run the dat
174174

175175
Modzy supports several *input types* such as `text`, `embedded` for Base64 strings, `aws-s3` and `aws-s3-folder` for inputs hosted in buckets, and `jdbc` for inputs stored in databases. In this sample, we use `text`.
176176

177-
Submit a job with the model, version, and input items:
177+
link:https://models.modzy.com/docs/jobs/jobs/submit-job-text[Submit a job with the model, version, and input items]:
178178

179179
[source, js]
180180
----
@@ -188,14 +188,18 @@ let job = await modzyClient.submitJobText(
188188
);
189189
----
190190

191-
Hold until the inference is complete and results become available:
191+
link:https://models.modzy.com/docs/jobs/jobs/retrieve-job-details[Hold until the inference is complete and results become available]:
192192

193193
[source, js]
194194
----
195195
job = await modzyClient.blockUntilComplete(job);
196196
----
197197

198-
Get the output results:
198+
link:https://models.modzy.com/docs/jobs/results/retrieve-results[Get the results]:
199+
200+
Results are available per input item and can be identified with the name provided for each input item upon job request. You can also add an input name to the route and limit the results to any given input item.
201+
202+
Jobs requested for multiple input items may have partial results available prior to job completion.
199203

200204
[source, js]
201205
----
@@ -231,7 +235,7 @@ Modzy supports link:https://models.modzy.com/docs/features/batch-processing[batc
231235

232236
== APIs
233237

234-
Currently we support the following api routes:
238+
Here is a list of Modzy APIs. To see all the APIs, check our link:https://models.modzy.com/docs/home/home[Documentation].
235239

236240
:doc-pages: https://models.modzy.com/docs/
237241
[cols=3*, stripes=even]

0 commit comments

Comments
 (0)