Metadata-Version: 2.1
Name: fast-sentence-classify
Version: 0.1.3
Summary: Generic Sentence Classification Service
Home-page: https://github.com/craigtrim/fast-sentence-classify
License: None
Keywords: nlp,nlu,text,classify,classification
Author: Craig Trim
Author-email: craigtrim@gmail.com
Maintainer: Craig Trim
Maintainer-email: craigtrim@gmail.com
Requires-Python: ==3.8.5
Classifier: Development Status :: 4 - Beta
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: baseblock
Requires-Dist: spacy (==3.3)
Project-URL: Bug Tracker, https://github.com/craigtrim/fast-sentence-classify/issues
Project-URL: Repository, https://github.com/craigtrim/fast-sentence-classify
Description-Content-Type: text/markdown

# Fast Sentence Classification (fast-sentence-classify)

## Sample Usage
```python
from fast_sentence_classify import classify

d_result = classify("I'd like it if you could give me some directions to the library")
```
Result:
```json
{
   "data":{
      "input_text":"I'd like it if you could give me some directions to the library",
      "output_text":"WHERE_LOCATION"
   },
   "event":"fast-sentence-classify",
   "service":"classify",
   "stopwatch":"117.30μs",
   "ts":"1666897985.085184"
}
```

