querynest-cli 2.0.0__tar.gz → 2.0.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/PKG-INFO +44 -6
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/README.md +39 -3
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/pyproject.toml +10 -3
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/src/querynest_cli.egg-info/PKG-INFO +44 -6
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/src/querynest_cli.egg-info/requires.txt +4 -2
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/LICENSE +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/setup.cfg +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/src/querynest/__init__.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/src/querynest/cli/__init__.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/src/querynest/cli/commands/__init__.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/src/querynest/cli/commands/chat.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/src/querynest/cli/commands/config.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/src/querynest/cli/commands/history.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/src/querynest/cli/commands/sessions.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/src/querynest/cli/main.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/src/querynest/config/__init__.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/src/querynest/config/bootstrap.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/src/querynest/config/config_loader.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/src/querynest/config/config_model.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/src/querynest/config/gemini.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/src/querynest/config/llm.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/src/querynest/config/setup.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/src/querynest/embeddings/__init__.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/src/querynest/embeddings/embedder.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/src/querynest/loaders/__init__.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/src/querynest/loaders/pdf_loader.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/src/querynest/loaders/web_loader.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/src/querynest/loaders/youtube_loader.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/src/querynest/memory/__init__.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/src/querynest/memory/chat_memory.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/src/querynest/processor/__init__.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/src/querynest/processor/text_splitter.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/src/querynest/prompts/__init__.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/src/querynest/prompts/prompt_template.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/src/querynest/rag/rag_chain.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/src/querynest/retriever/__init__.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/src/querynest/sessions/session_meta.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/src/querynest/utils/__init__.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/src/querynest/utils/hashing.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/src/querynest/utils/paths.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/src/querynest/vector_store/__init__.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/src/querynest/vector_store/faiss_store.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/src/querynest_cli.egg-info/SOURCES.txt +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/src/querynest_cli.egg-info/dependency_links.txt +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/src/querynest_cli.egg-info/entry_points.txt +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.2}/src/querynest_cli.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: querynest-cli
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.2
|
|
4
4
|
Summary: FAISS-first RAG CLI for documents and web pages
|
|
5
5
|
Author: Divyansh Sharma
|
|
6
6
|
License: GNU GENERAL PUBLIC LICENSE
|
|
@@ -701,8 +701,9 @@ Requires-Dist: python-dotenv>=1.0
|
|
|
701
701
|
Requires-Dist: faiss-cpu<2.0,>=1.7.4
|
|
702
702
|
Requires-Dist: tiktoken>=0.6
|
|
703
703
|
Requires-Dist: pydantic<3.0,>=2.5
|
|
704
|
-
Requires-Dist: pypdf>=
|
|
704
|
+
Requires-Dist: pypdf>=6.14.2
|
|
705
705
|
Requires-Dist: requests>=2.31
|
|
706
|
+
Requires-Dist: urllib3>=2.7.0
|
|
706
707
|
Requires-Dist: beautifulsoup4>=4.12
|
|
707
708
|
Requires-Dist: readability-lxml>=0.8
|
|
708
709
|
Requires-Dist: lxml>=5.0
|
|
@@ -710,8 +711,9 @@ Requires-Dist: lxml-html-clean>=0.1
|
|
|
710
711
|
Requires-Dist: tqdm>=4.66
|
|
711
712
|
Requires-Dist: typer>=0.12
|
|
712
713
|
Requires-Dist: rich>=13.7
|
|
713
|
-
Requires-Dist: litellm<2.0,>=1.
|
|
714
|
+
Requires-Dist: litellm<2.0,>=1.84.0
|
|
714
715
|
Requires-Dist: langchain-litellm>=0.1
|
|
716
|
+
Requires-Dist: cryptography>=50.0.0
|
|
715
717
|
Dynamic: license-file
|
|
716
718
|
|
|
717
719
|
# QueryNest
|
|
@@ -775,7 +777,7 @@ QueryNest is distributed as a Python package and can be installed directly from
|
|
|
775
777
|
#### Install using pip
|
|
776
778
|
|
|
777
779
|
```bash
|
|
778
|
-
pip install querynest-cli==2.0.
|
|
780
|
+
pip install querynest-cli==2.0.1
|
|
779
781
|
```
|
|
780
782
|
|
|
781
783
|
This installs the `querynest` CLI in your environment.
|
|
@@ -791,7 +793,7 @@ If installed correctly, you should see the available CLI commands.
|
|
|
791
793
|
#### PyPI Package
|
|
792
794
|
|
|
793
795
|
Official PyPI release:
|
|
794
|
-
[https://pypi.org/project/querynest-cli/2.0.
|
|
796
|
+
[https://pypi.org/project/querynest-cli/2.0.1/](https://pypi.org/project/querynest-cli/2.0.1/)
|
|
795
797
|
|
|
796
798
|
---
|
|
797
799
|
|
|
@@ -836,6 +838,33 @@ QueryNest does **not** expose network services and is safe for **CLI usage**.
|
|
|
836
838
|
|
|
837
839
|
---
|
|
838
840
|
|
|
841
|
+
### Option 3: Download a native Linux package (.rpm / .deb / .tar.xz)
|
|
842
|
+
|
|
843
|
+
Standalone packages built with PyInstaller + fpm — no Python install required.
|
|
844
|
+
See [`packaging/README.md`](packaging/README.md) for how these are built and verified.
|
|
845
|
+
|
|
846
|
+
* **Fedora / RHEL / openSUSE (.rpm):**
|
|
847
|
+
[querynest-cli-2.0.0-1.x86_64.rpm](https://github.com/Divyansh1552005/QueryNest/releases/download/v2.0.0/querynest-cli-2.0.0-1.x86_64.rpm)
|
|
848
|
+
```bash
|
|
849
|
+
sudo rpm -i querynest-cli-2.0.0-1.x86_64.rpm
|
|
850
|
+
```
|
|
851
|
+
* **Debian / Ubuntu (.deb):**
|
|
852
|
+
[querynest-cli_2.0.0_amd64.deb](https://github.com/Divyansh1552005/QueryNest/releases/download/v2.0.0/querynest-cli_2.0.0_amd64.deb)
|
|
853
|
+
```bash
|
|
854
|
+
sudo dpkg -i querynest-cli_2.0.0_amd64.deb
|
|
855
|
+
```
|
|
856
|
+
* **Any x86_64 Linux distro (.tar.xz):**
|
|
857
|
+
[querynest-cli-2.0.0.tar.xz](https://github.com/Divyansh1552005/QueryNest/releases/download/v2.0.0/querynest-cli-2.0.0.tar.xz)
|
|
858
|
+
```bash
|
|
859
|
+
# archive layout is usr/bin/querynest, so extract to / to land it on PATH
|
|
860
|
+
sudo tar -xJf querynest-cli-2.0.0.tar.xz -C /
|
|
861
|
+
```
|
|
862
|
+
(Prefer not to touch `/usr` as root? Extract anywhere and run the binary at `<dir>/usr/bin/querynest` directly, or symlink it onto your own `PATH`.)
|
|
863
|
+
|
|
864
|
+
All release assets: [github.com/Divyansh1552005/QueryNest/releases](https://github.com/Divyansh1552005/QueryNest/releases)
|
|
865
|
+
|
|
866
|
+
---
|
|
867
|
+
|
|
839
868
|
# CLI Usage
|
|
840
869
|
|
|
841
870
|
The CLI supports:
|
|
@@ -1461,6 +1490,15 @@ Introduction website (TypeScript):
|
|
|
1461
1490
|
* Download — all distribution options listed clearly (pip, Docker, `.exe`, `.rpm`, `.deb`, AppImage, Tarball)
|
|
1462
1491
|
* Documentation — full usage guide, CLI reference, configuration options, and examples
|
|
1463
1492
|
|
|
1493
|
+
### v6 – TUI (Planned)
|
|
1494
|
+
|
|
1495
|
+
* Build an optional Terminal UI using Textual (Python)
|
|
1496
|
+
* Panels for chat history, input box, session sidebar, and model info
|
|
1497
|
+
* All existing CLI logic reusable as-is — Textual acts as a presentation layer only
|
|
1498
|
+
* CLI commands continue to work as-is — TUI is an alternative, not a replacement
|
|
1499
|
+
* Run via: `querynest tui`
|
|
1500
|
+
|
|
1501
|
+
|
|
1464
1502
|
---
|
|
1465
1503
|
|
|
1466
1504
|
## Distribution
|
|
@@ -1469,8 +1507,8 @@ QueryNest is distributed through multiple formats:
|
|
|
1469
1507
|
|
|
1470
1508
|
* Docker image (`divyansh1552005/querynest:latest`)
|
|
1471
1509
|
* pip package (`querynest-cli` on PyPI)
|
|
1510
|
+
* Linux packages — `.rpm`, `.deb`, `.tar.xz` (PyInstaller + fpm; see [`packaging/README.md`](packaging/README.md) for the build pipeline)
|
|
1472
1511
|
* Windows executable (`.exe` via PyInstaller) — planned
|
|
1473
|
-
* Linux packages (`.rpm`, `.deb`) — planned
|
|
1474
1512
|
|
|
1475
1513
|
Secrets and API keys are never bundled in distributed artifacts.
|
|
1476
1514
|
|
|
@@ -59,7 +59,7 @@ QueryNest is distributed as a Python package and can be installed directly from
|
|
|
59
59
|
#### Install using pip
|
|
60
60
|
|
|
61
61
|
```bash
|
|
62
|
-
pip install querynest-cli==2.0.
|
|
62
|
+
pip install querynest-cli==2.0.1
|
|
63
63
|
```
|
|
64
64
|
|
|
65
65
|
This installs the `querynest` CLI in your environment.
|
|
@@ -75,7 +75,7 @@ If installed correctly, you should see the available CLI commands.
|
|
|
75
75
|
#### PyPI Package
|
|
76
76
|
|
|
77
77
|
Official PyPI release:
|
|
78
|
-
[https://pypi.org/project/querynest-cli/2.0.
|
|
78
|
+
[https://pypi.org/project/querynest-cli/2.0.1/](https://pypi.org/project/querynest-cli/2.0.1/)
|
|
79
79
|
|
|
80
80
|
---
|
|
81
81
|
|
|
@@ -120,6 +120,33 @@ QueryNest does **not** expose network services and is safe for **CLI usage**.
|
|
|
120
120
|
|
|
121
121
|
---
|
|
122
122
|
|
|
123
|
+
### Option 3: Download a native Linux package (.rpm / .deb / .tar.xz)
|
|
124
|
+
|
|
125
|
+
Standalone packages built with PyInstaller + fpm — no Python install required.
|
|
126
|
+
See [`packaging/README.md`](packaging/README.md) for how these are built and verified.
|
|
127
|
+
|
|
128
|
+
* **Fedora / RHEL / openSUSE (.rpm):**
|
|
129
|
+
[querynest-cli-2.0.0-1.x86_64.rpm](https://github.com/Divyansh1552005/QueryNest/releases/download/v2.0.0/querynest-cli-2.0.0-1.x86_64.rpm)
|
|
130
|
+
```bash
|
|
131
|
+
sudo rpm -i querynest-cli-2.0.0-1.x86_64.rpm
|
|
132
|
+
```
|
|
133
|
+
* **Debian / Ubuntu (.deb):**
|
|
134
|
+
[querynest-cli_2.0.0_amd64.deb](https://github.com/Divyansh1552005/QueryNest/releases/download/v2.0.0/querynest-cli_2.0.0_amd64.deb)
|
|
135
|
+
```bash
|
|
136
|
+
sudo dpkg -i querynest-cli_2.0.0_amd64.deb
|
|
137
|
+
```
|
|
138
|
+
* **Any x86_64 Linux distro (.tar.xz):**
|
|
139
|
+
[querynest-cli-2.0.0.tar.xz](https://github.com/Divyansh1552005/QueryNest/releases/download/v2.0.0/querynest-cli-2.0.0.tar.xz)
|
|
140
|
+
```bash
|
|
141
|
+
# archive layout is usr/bin/querynest, so extract to / to land it on PATH
|
|
142
|
+
sudo tar -xJf querynest-cli-2.0.0.tar.xz -C /
|
|
143
|
+
```
|
|
144
|
+
(Prefer not to touch `/usr` as root? Extract anywhere and run the binary at `<dir>/usr/bin/querynest` directly, or symlink it onto your own `PATH`.)
|
|
145
|
+
|
|
146
|
+
All release assets: [github.com/Divyansh1552005/QueryNest/releases](https://github.com/Divyansh1552005/QueryNest/releases)
|
|
147
|
+
|
|
148
|
+
---
|
|
149
|
+
|
|
123
150
|
# CLI Usage
|
|
124
151
|
|
|
125
152
|
The CLI supports:
|
|
@@ -745,6 +772,15 @@ Introduction website (TypeScript):
|
|
|
745
772
|
* Download — all distribution options listed clearly (pip, Docker, `.exe`, `.rpm`, `.deb`, AppImage, Tarball)
|
|
746
773
|
* Documentation — full usage guide, CLI reference, configuration options, and examples
|
|
747
774
|
|
|
775
|
+
### v6 – TUI (Planned)
|
|
776
|
+
|
|
777
|
+
* Build an optional Terminal UI using Textual (Python)
|
|
778
|
+
* Panels for chat history, input box, session sidebar, and model info
|
|
779
|
+
* All existing CLI logic reusable as-is — Textual acts as a presentation layer only
|
|
780
|
+
* CLI commands continue to work as-is — TUI is an alternative, not a replacement
|
|
781
|
+
* Run via: `querynest tui`
|
|
782
|
+
|
|
783
|
+
|
|
748
784
|
---
|
|
749
785
|
|
|
750
786
|
## Distribution
|
|
@@ -753,8 +789,8 @@ QueryNest is distributed through multiple formats:
|
|
|
753
789
|
|
|
754
790
|
* Docker image (`divyansh1552005/querynest:latest`)
|
|
755
791
|
* pip package (`querynest-cli` on PyPI)
|
|
792
|
+
* Linux packages — `.rpm`, `.deb`, `.tar.xz` (PyInstaller + fpm; see [`packaging/README.md`](packaging/README.md) for the build pipeline)
|
|
756
793
|
* Windows executable (`.exe` via PyInstaller) — planned
|
|
757
|
-
* Linux packages (`.rpm`, `.deb`) — planned
|
|
758
794
|
|
|
759
795
|
Secrets and API keys are never bundled in distributed artifacts.
|
|
760
796
|
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "querynest-cli"
|
|
7
|
-
version = "2.0.
|
|
7
|
+
version = "2.0.2"
|
|
8
8
|
description = "FAISS-first RAG CLI for documents and web pages"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = { file = "LICENSE" }
|
|
@@ -40,8 +40,9 @@ dependencies = [
|
|
|
40
40
|
"faiss-cpu>=1.7.4,<2.0",
|
|
41
41
|
"tiktoken>=0.6",
|
|
42
42
|
"pydantic>=2.5,<3.0",
|
|
43
|
-
"pypdf>=
|
|
43
|
+
"pypdf>=6.14.2", # floor for CVE-2026-59935 / CVE-2026-59936 (DoS via malformed inline images)
|
|
44
44
|
"requests>=2.31",
|
|
45
|
+
"urllib3>=2.7.0", # transitive via requests; floor for CVE-2026-44432 (decompression-bomb DoS)
|
|
45
46
|
"beautifulsoup4>=4.12",
|
|
46
47
|
"readability-lxml>=0.8",
|
|
47
48
|
"lxml>=5.0",
|
|
@@ -49,13 +50,19 @@ dependencies = [
|
|
|
49
50
|
"tqdm>=4.66",
|
|
50
51
|
"typer>=0.12",
|
|
51
52
|
"rich>=13.7",
|
|
52
|
-
"litellm>=1.
|
|
53
|
+
"litellm>=1.84.0,<2.0", # floor for CVE-2026-49468 / CVE-2026-59822 (proxy auth bypass; not reachable via our client-only usage, but cheap to fix)
|
|
53
54
|
"langchain-litellm>=0.1",
|
|
55
|
+
"cryptography>=50.0.0", # transitive (via google-auth/grpc); floor for CVE-2026-69249 / CVE-2026-69247
|
|
54
56
|
]
|
|
55
57
|
|
|
56
58
|
[project.scripts]
|
|
57
59
|
querynest = "querynest.cli.main:main"
|
|
58
60
|
|
|
61
|
+
[dependency-groups]
|
|
62
|
+
dev = [
|
|
63
|
+
"pyinstaller>=6.10,<7.0",
|
|
64
|
+
]
|
|
65
|
+
|
|
59
66
|
[tool.setuptools]
|
|
60
67
|
package-dir = { "" = "src" }
|
|
61
68
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: querynest-cli
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.2
|
|
4
4
|
Summary: FAISS-first RAG CLI for documents and web pages
|
|
5
5
|
Author: Divyansh Sharma
|
|
6
6
|
License: GNU GENERAL PUBLIC LICENSE
|
|
@@ -701,8 +701,9 @@ Requires-Dist: python-dotenv>=1.0
|
|
|
701
701
|
Requires-Dist: faiss-cpu<2.0,>=1.7.4
|
|
702
702
|
Requires-Dist: tiktoken>=0.6
|
|
703
703
|
Requires-Dist: pydantic<3.0,>=2.5
|
|
704
|
-
Requires-Dist: pypdf>=
|
|
704
|
+
Requires-Dist: pypdf>=6.14.2
|
|
705
705
|
Requires-Dist: requests>=2.31
|
|
706
|
+
Requires-Dist: urllib3>=2.7.0
|
|
706
707
|
Requires-Dist: beautifulsoup4>=4.12
|
|
707
708
|
Requires-Dist: readability-lxml>=0.8
|
|
708
709
|
Requires-Dist: lxml>=5.0
|
|
@@ -710,8 +711,9 @@ Requires-Dist: lxml-html-clean>=0.1
|
|
|
710
711
|
Requires-Dist: tqdm>=4.66
|
|
711
712
|
Requires-Dist: typer>=0.12
|
|
712
713
|
Requires-Dist: rich>=13.7
|
|
713
|
-
Requires-Dist: litellm<2.0,>=1.
|
|
714
|
+
Requires-Dist: litellm<2.0,>=1.84.0
|
|
714
715
|
Requires-Dist: langchain-litellm>=0.1
|
|
716
|
+
Requires-Dist: cryptography>=50.0.0
|
|
715
717
|
Dynamic: license-file
|
|
716
718
|
|
|
717
719
|
# QueryNest
|
|
@@ -775,7 +777,7 @@ QueryNest is distributed as a Python package and can be installed directly from
|
|
|
775
777
|
#### Install using pip
|
|
776
778
|
|
|
777
779
|
```bash
|
|
778
|
-
pip install querynest-cli==2.0.
|
|
780
|
+
pip install querynest-cli==2.0.1
|
|
779
781
|
```
|
|
780
782
|
|
|
781
783
|
This installs the `querynest` CLI in your environment.
|
|
@@ -791,7 +793,7 @@ If installed correctly, you should see the available CLI commands.
|
|
|
791
793
|
#### PyPI Package
|
|
792
794
|
|
|
793
795
|
Official PyPI release:
|
|
794
|
-
[https://pypi.org/project/querynest-cli/2.0.
|
|
796
|
+
[https://pypi.org/project/querynest-cli/2.0.1/](https://pypi.org/project/querynest-cli/2.0.1/)
|
|
795
797
|
|
|
796
798
|
---
|
|
797
799
|
|
|
@@ -836,6 +838,33 @@ QueryNest does **not** expose network services and is safe for **CLI usage**.
|
|
|
836
838
|
|
|
837
839
|
---
|
|
838
840
|
|
|
841
|
+
### Option 3: Download a native Linux package (.rpm / .deb / .tar.xz)
|
|
842
|
+
|
|
843
|
+
Standalone packages built with PyInstaller + fpm — no Python install required.
|
|
844
|
+
See [`packaging/README.md`](packaging/README.md) for how these are built and verified.
|
|
845
|
+
|
|
846
|
+
* **Fedora / RHEL / openSUSE (.rpm):**
|
|
847
|
+
[querynest-cli-2.0.0-1.x86_64.rpm](https://github.com/Divyansh1552005/QueryNest/releases/download/v2.0.0/querynest-cli-2.0.0-1.x86_64.rpm)
|
|
848
|
+
```bash
|
|
849
|
+
sudo rpm -i querynest-cli-2.0.0-1.x86_64.rpm
|
|
850
|
+
```
|
|
851
|
+
* **Debian / Ubuntu (.deb):**
|
|
852
|
+
[querynest-cli_2.0.0_amd64.deb](https://github.com/Divyansh1552005/QueryNest/releases/download/v2.0.0/querynest-cli_2.0.0_amd64.deb)
|
|
853
|
+
```bash
|
|
854
|
+
sudo dpkg -i querynest-cli_2.0.0_amd64.deb
|
|
855
|
+
```
|
|
856
|
+
* **Any x86_64 Linux distro (.tar.xz):**
|
|
857
|
+
[querynest-cli-2.0.0.tar.xz](https://github.com/Divyansh1552005/QueryNest/releases/download/v2.0.0/querynest-cli-2.0.0.tar.xz)
|
|
858
|
+
```bash
|
|
859
|
+
# archive layout is usr/bin/querynest, so extract to / to land it on PATH
|
|
860
|
+
sudo tar -xJf querynest-cli-2.0.0.tar.xz -C /
|
|
861
|
+
```
|
|
862
|
+
(Prefer not to touch `/usr` as root? Extract anywhere and run the binary at `<dir>/usr/bin/querynest` directly, or symlink it onto your own `PATH`.)
|
|
863
|
+
|
|
864
|
+
All release assets: [github.com/Divyansh1552005/QueryNest/releases](https://github.com/Divyansh1552005/QueryNest/releases)
|
|
865
|
+
|
|
866
|
+
---
|
|
867
|
+
|
|
839
868
|
# CLI Usage
|
|
840
869
|
|
|
841
870
|
The CLI supports:
|
|
@@ -1461,6 +1490,15 @@ Introduction website (TypeScript):
|
|
|
1461
1490
|
* Download — all distribution options listed clearly (pip, Docker, `.exe`, `.rpm`, `.deb`, AppImage, Tarball)
|
|
1462
1491
|
* Documentation — full usage guide, CLI reference, configuration options, and examples
|
|
1463
1492
|
|
|
1493
|
+
### v6 – TUI (Planned)
|
|
1494
|
+
|
|
1495
|
+
* Build an optional Terminal UI using Textual (Python)
|
|
1496
|
+
* Panels for chat history, input box, session sidebar, and model info
|
|
1497
|
+
* All existing CLI logic reusable as-is — Textual acts as a presentation layer only
|
|
1498
|
+
* CLI commands continue to work as-is — TUI is an alternative, not a replacement
|
|
1499
|
+
* Run via: `querynest tui`
|
|
1500
|
+
|
|
1501
|
+
|
|
1464
1502
|
---
|
|
1465
1503
|
|
|
1466
1504
|
## Distribution
|
|
@@ -1469,8 +1507,8 @@ QueryNest is distributed through multiple formats:
|
|
|
1469
1507
|
|
|
1470
1508
|
* Docker image (`divyansh1552005/querynest:latest`)
|
|
1471
1509
|
* pip package (`querynest-cli` on PyPI)
|
|
1510
|
+
* Linux packages — `.rpm`, `.deb`, `.tar.xz` (PyInstaller + fpm; see [`packaging/README.md`](packaging/README.md) for the build pipeline)
|
|
1472
1511
|
* Windows executable (`.exe` via PyInstaller) — planned
|
|
1473
|
-
* Linux packages (`.rpm`, `.deb`) — planned
|
|
1474
1512
|
|
|
1475
1513
|
Secrets and API keys are never bundled in distributed artifacts.
|
|
1476
1514
|
|
|
@@ -8,8 +8,9 @@ python-dotenv>=1.0
|
|
|
8
8
|
faiss-cpu<2.0,>=1.7.4
|
|
9
9
|
tiktoken>=0.6
|
|
10
10
|
pydantic<3.0,>=2.5
|
|
11
|
-
pypdf>=
|
|
11
|
+
pypdf>=6.14.2
|
|
12
12
|
requests>=2.31
|
|
13
|
+
urllib3>=2.7.0
|
|
13
14
|
beautifulsoup4>=4.12
|
|
14
15
|
readability-lxml>=0.8
|
|
15
16
|
lxml>=5.0
|
|
@@ -17,5 +18,6 @@ lxml-html-clean>=0.1
|
|
|
17
18
|
tqdm>=4.66
|
|
18
19
|
typer>=0.12
|
|
19
20
|
rich>=13.7
|
|
20
|
-
litellm<2.0,>=1.
|
|
21
|
+
litellm<2.0,>=1.84.0
|
|
21
22
|
langchain-litellm>=0.1
|
|
23
|
+
cryptography>=50.0.0
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|