Skip to content

Commit

Permalink
Improve documentation of exposed service
Browse files Browse the repository at this point in the history
  • Loading branch information
SergioLangaritaBenitez committed Sep 19, 2023
1 parent 0b7cd02 commit f993a74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/invoking.md
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ curl {-k} -X POST https://{oscar_endpoint}/system/services/body-pose-detection-a
Finally, the complete command that works in [Local Testing](https://docs.oscar.grycap.net/local-testing/) with an image called `people.jpeg` as input and `output_posenet.zip` as output.

``` bash
curl -X POST localhost/system/services/body-pose-detection-async/exposed/v2/models/posenetclas/predict/ -H "accept: */*" -H "Content-Type: multipart/form-data" -F "data=@people.jpeg;type=image/png" --output output_posenet.zip
curl -X POST https://localhost/system/services/body-pose-detection-async/exposed/v2/models/posenetclas/predict/ -H "accept: */*" -H "Content-Type: multipart/form-data" -F "data=@people.jpeg;type=image/png" --output output_posenet.zip
```

Another FDL example shows how to expose a simple NGINX server as an OSCAR service:
Expand Down

0 comments on commit f993a74

Please sign in to comment.