You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -47,7 +47,7 @@ API keys are security credentials required to perform API requests to Modzy. Our
47
47
48
48
The *public* part is the API keys' visible part only used to identify the key and by itself, it’s unable to perform API requests.
49
49
50
-
The *private* part is the public part's complement and it’s required to perform API requests. Since it’s not stored on Modzy’s servers, it cannot be recovered. Make sure to save it securely. If lost, you can [replace the API key](https://models.modzy.com/docs/users-keys/api-keys/replace-API-key).
50
+
The *private* part is the public part's complement and it’s required to perform API requests. Since it’s not stored on Modzy’s servers, it cannot be recovered. Make sure to save it securely. If lost, you can [replace the API key](https://docs.modzy.com/reference/update-a-keys-body).
51
51
52
52
53
53
Find your API key in your user profile. To get your full API key click on "Get key":
@@ -74,7 +74,7 @@ Modzy’s Marketplace includes pre-trained and re-trainable AI models from indus
74
74
75
75
The Model service drives the Marketplace and can be integrated with other applications, scripts, and systems. It provides routes to list, search, and filter model and model-version details.
@@ -111,7 +111,7 @@ Models require inputs to have a specific *input name* declared in the job reques
111
111
112
112
Additionally, users can set their own input names. When multiple input items are processed in a job, these names are helpful to identify and get each input’s results. In this sample, we use a model that requires `input-1` and `input-2`.
113
113
114
-
[Get a model's details](https://models.modzy.com/docs/marketplace/models/retrieve-model-details):
114
+
[Get a model's details](https://docs.modzy.com/reference/list-model-details):
115
115
116
116
```java
117
117
Model saModel = modzyClient.getModel("ed542963de");
@@ -149,19 +149,19 @@ Modzy supports several *input types* such as `text`, `embedded` for Base64 strin
149
149
150
150
[Here](https://github.com/modzy/sdk-java/blob/readmeUpdates/samples.adoc) are samples to submit jobs with `embedded`, `aws-s3`, `aws-s3-folder`, and `jdbc` input types.
151
151
152
-
[Submit a job with the model, version, and input items](https://models.modzy.com/docs/jobs/jobs/submit-job-text):
152
+
[Submit a job with the model, version, and input items](https://docs.modzy.com/reference/create-a-job-1):
153
153
154
154
```java
155
155
Job job = modzyClient.submitJobText("ed542963de", "0.0.27", "Modzy is great!");
156
156
```
157
157
158
-
[Hold until the inference is complete and results become available](https://models.modzy.com/docs/jobs/jobs/retrieve-job-details):
158
+
[Hold until the inference is complete and results become available](https://docs.modzy.com/reference/get-job-details):
[Get the results](https://models.modzy.com/docs/jobs/results/retrieve-results):
164
+
[Get the results](https://docs.modzy.com/reference/get-results):
165
165
166
166
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.
167
167
@@ -195,33 +195,33 @@ catch(ApiException ae){
195
195
196
196
## Features
197
197
198
-
Modzy supports [batch processing](https://models.modzy.com/docs/features/batch-processing), [explainability](https://models.modzy.com/docs/features/explainability), and [model drift detection](https://models.modzy.com/docs/features/model-drift).
198
+
Modzy supports [batch processing](https://docs.modzy.com/reference/batch-processing), [explainability](https://docs.modzy.com/reference/explainability), and [model drift detection](https://docs.modzy.com/reference/model-drift-1).
199
199
200
200
## APIs
201
201
202
-
Here is a list of Modzy APIs. To see all the APIs, check our [Documentation](https://models.modzy.com/docs/home/home).
202
+
Here is a list of Modzy APIs. To see all the APIs, check our [Documentation](https://docs.modzy.com/reference/introduction).
203
203
204
204
205
205
| Feature | Code |Api route
206
206
| --- | --- | ---
207
-
|Get all models|modzyClient.getAllModels()|[api/models](https://models.modzy.com/docs/marketplace/models/retrieve-all-models-versions)|
|Get model details|modzyClient.getModel()|[api/models/:model-id](https://models.modzy.com/docs/marketplace/models/retrieve-model-details)|
210
-
|List models by name|modzyClient.getModelByName()|[api/models](https://models.modzy.com/docs/marketplace/models/retrieve-models)|
211
-
|List models by tags|modzyClient.getTagsAndModels()|[api/models/tags/:tag-id](https://models.modzy.com/docs/marketplace/tags/retrieve-models-by-tags)|
212
-
|Get related models|modzyClient.getRelatedModels()|[api/models/:model-id/related-models](https://models.modzy.com/docs/marketplace/models/retrieve-related-models)|
213
-
|Get a model's versions|modzyClient.getModelVersions()|[api/models/:model-id/versions](https://models.modzy.com/docs/marketplace/versions/retrieve-versions)|
214
-
|Get version details|modzyClient.getModelVersions()|[api/models/:model-id/versions/:version-id](https://models.modzy.com/docs/marketplace/versions/retrieve-version-details)|
0 commit comments