Metadata-Version: 2.1
Name: doctalk
Version: 0.1.2
Summary: doctalk: Dialogue agent handling queries about a given text document
Home-page: https://github.com/ptarau/pytalk.git
Author: Paul Tarau
License: Apache
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: networkx
Requires-Dist: graphviz
Requires-Dist: wordcloud
Requires-Dist: matplotlib
Requires-Dist: natlog
Requires-Dist: stanfordnlp

# doctalk
Simple Python-based query  answering system with optional voice output

USAGE:

```
python3 -i

>>> from doctalk import run_with
>>> run_with(fname)
```
This ctivates dialog about document in ```<fname>.txt``` with questions in ```<fname>_quests.txt```

It assumes Stanford Corenlp Server listening on port 9000 with all annotators in params.py started with something like:

```
java -mx16g -cp "stanford-corenlp-full-2018-10-05/*" edu.stanford.nlp.pipeline.StanfordCoreNLPServer 
-preload tokenize,ssplit,pos,lemma,depparse,natlog,openie
```

See some examples at : https://github.com/ptarau/pytalk .

Please see the install hints for stanfordnlp, that might involve torch binaries, and require anaconda on some systems.



