diff --git a/Khoj.desktop b/Khoj.desktop index a9bac639..b3a1cf75 100644 --- a/Khoj.desktop +++ b/Khoj.desktop @@ -1,7 +1,7 @@ [Desktop Entry] Type=Application Name=Khoj -Comment=A natural language search engine for your personal notes, transactions and images. +Comment=An AI personal assistant for your Digital Brain Path=/opt Exec=/opt/Khoj Icon=Khoj diff --git a/pyproject.toml b/pyproject.toml index c89f5575..e6632574 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "khoj-assistant" -description = "A natural language search engine for your personal notes, transactions and images" +description = "An AI personal assistant for your Digital Brain" readme = "README.md" license = "GPL-3.0-or-later" requires-python = ">=3.8" diff --git a/src/interface/obsidian/README.md b/src/interface/obsidian/README.md index f2d664d3..c63fec7f 100644 --- a/src/interface/obsidian/README.md +++ b/src/interface/obsidian/README.md @@ -1,6 +1,6 @@ Khoj LogoObsidian -> Natural language search for your Obsidian notes using [Khoj](https://github.com/khoj-ai/khoj) +> An AI personal assistant for your Digital Brain in Obsidian ## Table of Contents diff --git a/src/khoj/utils/cli.py b/src/khoj/utils/cli.py index 535e664b..cef718ee 100644 --- a/src/khoj/utils/cli.py +++ b/src/khoj/utils/cli.py @@ -10,9 +10,7 @@ from khoj.utils.yaml import parse_config_from_file def cli(args=None): # Setup Argument Parser for the Commandline Interface - parser = argparse.ArgumentParser( - description="Start Khoj; A Natural Language Search Engine for your personal Notes, Transactions and Photos" - ) + parser = argparse.ArgumentParser(description="Start Khoj; An AI personal assistant for your Digital Brain") parser.add_argument( "--config-file", "-c", default="~/.khoj/khoj.yml", type=pathlib.Path, help="YAML file to configure Khoj" )