mirror of
https://github.com/khoj-ai/khoj.git
synced 2024-11-27 09:25:06 +01:00
Fix Khoj subtitle in desktop entry, pyproject, cli and Obsidian Readme
This commit is contained in:
parent
feac71ce1e
commit
30459ee4ba
4 changed files with 4 additions and 6 deletions
|
@ -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
|
||||||
|
|
|
@ -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"
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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"
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue