aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorterminaldweller <thabogre@gmail.com>2022-07-30 09:21:25 +0000
committerterminaldweller <thabogre@gmail.com>2022-07-30 09:21:25 +0000
commit96207ce5b0c3c7beddd29501a0c7455ab20c4e7c (patch)
tree3c1c992ccc23d9186a550c9e130790c1f44ab8e2
parentfixed a couple of the issues raised by codacy (diff)
downloaddevourer-96207ce5b0c3c7beddd29501a0c7455ab20c4e7c.tar.gz
devourer-96207ce5b0c3c7beddd29501a0c7455ab20c4e7c.zip
fixes #1
-rw-r--r--devourer/devourer.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/devourer/devourer.py b/devourer/devourer.py
index 9587a1d..41891c1 100644
--- a/devourer/devourer.py
+++ b/devourer/devourer.py
@@ -21,14 +21,14 @@ from tika import parser as tparser # type:ignore
MODULE_DESCRIPTION = """
Devourer is a lightweight knowledge aggregator.</br>
Right now though, its more of
-a personal assistant. It cant extract text and summarize it and
+a personal assistant. It can extract text and summarize it and
turn it into audio.<br/>
"""
TAGS_METADATA = [
{
"name": "/mila/pdf",
"description": "The PDF endpoint. It accepts urls that contain a "
- "PDF as input.",
+ "PDF as input. It can summarize the test and turn them into audio.",
},
{
"name": "/mila/reqs",
@@ -37,14 +37,15 @@ TAGS_METADATA = [
},
{
"name": "/mila/wiki",
- "description": "Searches for the given term on wikipedia.",
+ "description": "Searches for the given term on wikipedia. Can "
+ "optionally summarize the result and turn it into audio.",
},
{
"name": "/mila/summ",
"description": "The summary endpoint accepts a url as input "
"that contains an html page. devourer extracts the "
"__important__ text out of the page and then will either "
- "summarize and turn into audio.",
+ "summarize and optionally turn it into audio.",
},
{"name": "/mila/health", "description": "The health endpoint."},
]