Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 1.06 KB

README.md

File metadata and controls

29 lines (24 loc) · 1.06 KB

Download the model

wget -O en_core_sci_md 'https://s3-us-west-2.amazonaws.com/ai2-s2-scispacy/releases/v0.4.0/en_core_sci_md-0.4.0.tar.gz'

Test authentication

The server api is using Basic Authentication such that it could also run in some publically accessible cloud environment.

Make sure to adjust the -u admin:password to the credentials that you have specified in the .env file.

curl -X POST -F 'foo=bar' -u 'admin:password' http://localhost:8080/auto_annotate
{"detail":[{"loc":["body"],"msg":"value is not a valid dict","type":"type_error.dict"}]}

Using Header

Get the Base64 encoded credentials:

(nlp_env) fiete@ubu:~/Documents/programming/doccano_spacy$ echo -n 'admin:password' | base64
YWRtaW46cGFzc3dvcmQ=
curl -X POST -F 'foo=bar' -H 'Authorization: Basic YWRtaW46cGFzc3dvcmQ=' http://localhost:8080/auto_annotate
curl -X POST -F 'foo=bar' -H 'Authorization: Basic ZG9jY19zcGFjeTpZQXQ5NVFhRllBdDk1UWFG' http://localhost:8080/auto_annotate