Fix Khoj subtitle in desktop entry, pyproject, cli and Obsidian Readme

This commit is contained in:
Debanjum Singh Solanky 2023-07-01 20:24:46 -07:00
parent feac71ce1e
commit 30459ee4ba
4 changed files with 4 additions and 6 deletions

View file

@ -1,7 +1,7 @@
[Desktop Entry] [Desktop Entry]
Type=Application Type=Application
Name=Khoj 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 Path=/opt
Exec=/opt/Khoj Exec=/opt/Khoj
Icon=Khoj Icon=Khoj

View file

@ -4,7 +4,7 @@ build-backend = "hatchling.build"
[project] [project]
name = "khoj-assistant" 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" readme = "README.md"
license = "GPL-3.0-or-later" license = "GPL-3.0-or-later"
requires-python = ">=3.8" requires-python = ">=3.8"

View file

@ -1,6 +1,6 @@
<img src="/src/khoj/interface/web/assets/icons/khoj-logo-sideways.svg" width="200" alt="Khoj Logo">Obsidian <img src="/src/khoj/interface/web/assets/icons/khoj-logo-sideways.svg" width="200" alt="Khoj Logo">Obsidian
> 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 ## Table of Contents

View file

@ -10,9 +10,7 @@ from khoj.utils.yaml import parse_config_from_file
def cli(args=None): def cli(args=None):
# Setup Argument Parser for the Commandline Interface # Setup Argument Parser for the Commandline Interface
parser = argparse.ArgumentParser( parser = argparse.ArgumentParser(description="Start Khoj; An AI personal assistant for your Digital Brain")
description="Start Khoj; A Natural Language Search Engine for your personal Notes, Transactions and Photos"
)
parser.add_argument( parser.add_argument(
"--config-file", "-c", default="~/.khoj/khoj.yml", type=pathlib.Path, help="YAML file to configure Khoj" "--config-file", "-c", default="~/.khoj/khoj.yml", type=pathlib.Path, help="YAML file to configure Khoj"
) )