Skip to content

Latest commit

 

History

History
53 lines (36 loc) · 870 Bytes

README.md

File metadata and controls

53 lines (36 loc) · 870 Bytes

transformers-server

Small FastAPI server for HTTP transformers inference

API

POST /cookie

Request

An application/json data

Field Description
text (str) Text for inference

Example

{
  "text": "I like butter cookies!"
}

Response

An application/json data

Field Description
id (int) 0 (NO) or 1 (YES)
label (str) NO or YES

Example

{
  "id": 1,
  "label": "YES"
}

Environment Variables

Variable Description
COOKIE_MODEL_PATH Path to a distilbert-base-cased model

License

See LICENSE.md