Skip to content

Commit 1f4fa16

Browse files
committed
fix: method name
1 parent 1642378 commit 1f4fa16

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/model-client.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ class ModelClient{
343343
* @return {String} A json string with the output sample
344344
* @throws {ApiError} Error if there is something wrong with the service or the call
345345
*/
346-
getModelVersionInputSample(modelId, versionId){
346+
getModelVersionOutputSample(modelId, versionId){
347347
const requestURL = `${this.baseURL}/${modelId}/versions/${versionId}/sample-output`;
348348
logger.debug(`getModelVersionOutputSample(${modelId}, ${versionId}) GET ${requestURL}`);
349349
return axios.get(

0 commit comments

Comments
 (0)