querynest-cli 2.0.0__tar.gz → 2.0.1__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.1}/PKG-INFO +11 -2
- {querynest_cli-2.0.0 → querynest_cli-2.0.1}/README.md +10 -1
- {querynest_cli-2.0.0 → querynest_cli-2.0.1}/pyproject.toml +6 -1
- {querynest_cli-2.0.0 → querynest_cli-2.0.1}/src/querynest_cli.egg-info/PKG-INFO +11 -2
- {querynest_cli-2.0.0 → querynest_cli-2.0.1}/LICENSE +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.1}/setup.cfg +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.1}/src/querynest/__init__.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.1}/src/querynest/cli/__init__.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.1}/src/querynest/cli/commands/__init__.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.1}/src/querynest/cli/commands/chat.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.1}/src/querynest/cli/commands/config.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.1}/src/querynest/cli/commands/history.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.1}/src/querynest/cli/commands/sessions.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.1}/src/querynest/cli/main.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.1}/src/querynest/config/__init__.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.1}/src/querynest/config/bootstrap.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.1}/src/querynest/config/config_loader.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.1}/src/querynest/config/config_model.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.1}/src/querynest/config/gemini.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.1}/src/querynest/config/llm.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.1}/src/querynest/config/setup.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.1}/src/querynest/embeddings/__init__.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.1}/src/querynest/embeddings/embedder.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.1}/src/querynest/loaders/__init__.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.1}/src/querynest/loaders/pdf_loader.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.1}/src/querynest/loaders/web_loader.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.1}/src/querynest/loaders/youtube_loader.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.1}/src/querynest/memory/__init__.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.1}/src/querynest/memory/chat_memory.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.1}/src/querynest/processor/__init__.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.1}/src/querynest/processor/text_splitter.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.1}/src/querynest/prompts/__init__.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.1}/src/querynest/prompts/prompt_template.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.1}/src/querynest/rag/rag_chain.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.1}/src/querynest/retriever/__init__.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.1}/src/querynest/sessions/session_meta.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.1}/src/querynest/utils/__init__.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.1}/src/querynest/utils/hashing.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.1}/src/querynest/utils/paths.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.1}/src/querynest/vector_store/__init__.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.1}/src/querynest/vector_store/faiss_store.py +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.1}/src/querynest_cli.egg-info/SOURCES.txt +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.1}/src/querynest_cli.egg-info/dependency_links.txt +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.1}/src/querynest_cli.egg-info/entry_points.txt +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.1}/src/querynest_cli.egg-info/requires.txt +0 -0
- {querynest_cli-2.0.0 → querynest_cli-2.0.1}/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.1
|
|
4
4
|
Summary: FAISS-first RAG CLI for documents and web pages
|
|
5
5
|
Author: Divyansh Sharma
|
|
6
6
|
License: GNU GENERAL PUBLIC LICENSE
|
|
@@ -1461,6 +1461,15 @@ Introduction website (TypeScript):
|
|
|
1461
1461
|
* Download — all distribution options listed clearly (pip, Docker, `.exe`, `.rpm`, `.deb`, AppImage, Tarball)
|
|
1462
1462
|
* Documentation — full usage guide, CLI reference, configuration options, and examples
|
|
1463
1463
|
|
|
1464
|
+
### v6 – TUI (Planned)
|
|
1465
|
+
|
|
1466
|
+
* Build an optional Terminal UI using Textual (Python)
|
|
1467
|
+
* Panels for chat history, input box, session sidebar, and model info
|
|
1468
|
+
* All existing CLI logic reusable as-is — Textual acts as a presentation layer only
|
|
1469
|
+
* CLI commands continue to work as-is — TUI is an alternative, not a replacement
|
|
1470
|
+
* Run via: `querynest tui`
|
|
1471
|
+
|
|
1472
|
+
|
|
1464
1473
|
---
|
|
1465
1474
|
|
|
1466
1475
|
## Distribution
|
|
@@ -1469,8 +1478,8 @@ QueryNest is distributed through multiple formats:
|
|
|
1469
1478
|
|
|
1470
1479
|
* Docker image (`divyansh1552005/querynest:latest`)
|
|
1471
1480
|
* pip package (`querynest-cli` on PyPI)
|
|
1481
|
+
* Linux packages — `.rpm`, `.deb`, `.tar.xz` (PyInstaller + fpm; see [`packaging/README.md`](packaging/README.md) for the build pipeline)
|
|
1472
1482
|
* Windows executable (`.exe` via PyInstaller) — planned
|
|
1473
|
-
* Linux packages (`.rpm`, `.deb`) — planned
|
|
1474
1483
|
|
|
1475
1484
|
Secrets and API keys are never bundled in distributed artifacts.
|
|
1476
1485
|
|
|
@@ -745,6 +745,15 @@ Introduction website (TypeScript):
|
|
|
745
745
|
* Download — all distribution options listed clearly (pip, Docker, `.exe`, `.rpm`, `.deb`, AppImage, Tarball)
|
|
746
746
|
* Documentation — full usage guide, CLI reference, configuration options, and examples
|
|
747
747
|
|
|
748
|
+
### v6 – TUI (Planned)
|
|
749
|
+
|
|
750
|
+
* Build an optional Terminal UI using Textual (Python)
|
|
751
|
+
* Panels for chat history, input box, session sidebar, and model info
|
|
752
|
+
* All existing CLI logic reusable as-is — Textual acts as a presentation layer only
|
|
753
|
+
* CLI commands continue to work as-is — TUI is an alternative, not a replacement
|
|
754
|
+
* Run via: `querynest tui`
|
|
755
|
+
|
|
756
|
+
|
|
748
757
|
---
|
|
749
758
|
|
|
750
759
|
## Distribution
|
|
@@ -753,8 +762,8 @@ QueryNest is distributed through multiple formats:
|
|
|
753
762
|
|
|
754
763
|
* Docker image (`divyansh1552005/querynest:latest`)
|
|
755
764
|
* pip package (`querynest-cli` on PyPI)
|
|
765
|
+
* Linux packages — `.rpm`, `.deb`, `.tar.xz` (PyInstaller + fpm; see [`packaging/README.md`](packaging/README.md) for the build pipeline)
|
|
756
766
|
* Windows executable (`.exe` via PyInstaller) — planned
|
|
757
|
-
* Linux packages (`.rpm`, `.deb`) — planned
|
|
758
767
|
|
|
759
768
|
Secrets and API keys are never bundled in distributed artifacts.
|
|
760
769
|
|
|
@@ -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.1"
|
|
8
8
|
description = "FAISS-first RAG CLI for documents and web pages"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = { file = "LICENSE" }
|
|
@@ -56,6 +56,11 @@ dependencies = [
|
|
|
56
56
|
[project.scripts]
|
|
57
57
|
querynest = "querynest.cli.main:main"
|
|
58
58
|
|
|
59
|
+
[dependency-groups]
|
|
60
|
+
dev = [
|
|
61
|
+
"pyinstaller>=6.10,<7.0",
|
|
62
|
+
]
|
|
63
|
+
|
|
59
64
|
[tool.setuptools]
|
|
60
65
|
package-dir = { "" = "src" }
|
|
61
66
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: querynest-cli
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.1
|
|
4
4
|
Summary: FAISS-first RAG CLI for documents and web pages
|
|
5
5
|
Author: Divyansh Sharma
|
|
6
6
|
License: GNU GENERAL PUBLIC LICENSE
|
|
@@ -1461,6 +1461,15 @@ Introduction website (TypeScript):
|
|
|
1461
1461
|
* Download — all distribution options listed clearly (pip, Docker, `.exe`, `.rpm`, `.deb`, AppImage, Tarball)
|
|
1462
1462
|
* Documentation — full usage guide, CLI reference, configuration options, and examples
|
|
1463
1463
|
|
|
1464
|
+
### v6 – TUI (Planned)
|
|
1465
|
+
|
|
1466
|
+
* Build an optional Terminal UI using Textual (Python)
|
|
1467
|
+
* Panels for chat history, input box, session sidebar, and model info
|
|
1468
|
+
* All existing CLI logic reusable as-is — Textual acts as a presentation layer only
|
|
1469
|
+
* CLI commands continue to work as-is — TUI is an alternative, not a replacement
|
|
1470
|
+
* Run via: `querynest tui`
|
|
1471
|
+
|
|
1472
|
+
|
|
1464
1473
|
---
|
|
1465
1474
|
|
|
1466
1475
|
## Distribution
|
|
@@ -1469,8 +1478,8 @@ QueryNest is distributed through multiple formats:
|
|
|
1469
1478
|
|
|
1470
1479
|
* Docker image (`divyansh1552005/querynest:latest`)
|
|
1471
1480
|
* pip package (`querynest-cli` on PyPI)
|
|
1481
|
+
* Linux packages — `.rpm`, `.deb`, `.tar.xz` (PyInstaller + fpm; see [`packaging/README.md`](packaging/README.md) for the build pipeline)
|
|
1472
1482
|
* Windows executable (`.exe` via PyInstaller) — planned
|
|
1473
|
-
* Linux packages (`.rpm`, `.deb`) — planned
|
|
1474
1483
|
|
|
1475
1484
|
Secrets and API keys are never bundled in distributed artifacts.
|
|
1476
1485
|
|
|
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
|
|
File without changes
|