From 96207ce5b0c3c7beddd29501a0c7455ab20c4e7c Mon Sep 17 00:00:00 2001 From: terminaldweller Date: Sat, 30 Jul 2022 13:51:25 +0430 Subject: fixes #1 --- devourer/devourer.py | 9 +++++---- 1 file 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.
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.
""" 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."}, ] -- cgit v1.2.3