AI开发平台MODELARTS-apis定义:解释说明
解释说明
参数 |
是否必选 |
参数类型 |
描述 |
---|---|---|---|
url |
否 |
String |
请求路径。默认值为“/”。 自定义镜像 的模型需要根据镜像内实际暴露的请求路径填写“url”。非自定义镜像模型,“url”只能为“/”。 |
method |
否 |
String |
请求方法。默认值为“POST”。 |
request |
否 |
Object |
请求体。包含两个参数:
|
response |
否 |
Object |
响应体。包含两个参数:
|
apis参数代码示例如下:
[{ "url": "/", "method": "post", "request": { "Content-type": "multipart/form-data", "data": { "type": "object", "properties": { "images": { "type": "file" } } } }, "response": { "Content-type": "applicaton/json", "data": { "type": "object", "properties": { "mnist_result": { "type": "array", "item": [ { "type": "string" } ] } } } } }]