docpilot-cli 1.0.1__tar.gz → 1.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: docpilot-cli
3
- Version: 1.0.1
3
+ Version: 1.0.2
4
4
  Summary: A local-first RAG pipeline CLI tool
5
5
  Requires-Python: >=3.12
6
6
  Description-Content-Type: text/markdown
@@ -87,6 +87,9 @@ docpilot ingest "./docs/engineering_handbook.pdf"
87
87
  docpilot ingest "./data/faq.csv"
88
88
  ```
89
89
 
90
+ > [!TIP]
91
+ > If you installed via standard `pip` and get a "command not found" error because your binary path isn't configured, you can always run docpilot by prefixing commands with `python -m docpilot` (e.g., `python -m docpilot ingest ...`).
92
+
90
93
  ### 2. Ask Questions
91
94
  Query your newly created local knowledge base:
92
95
 
@@ -65,6 +65,9 @@ docpilot ingest "./docs/engineering_handbook.pdf"
65
65
  docpilot ingest "./data/faq.csv"
66
66
  ```
67
67
 
68
+ > [!TIP]
69
+ > If you installed via standard `pip` and get a "command not found" error because your binary path isn't configured, you can always run docpilot by prefixing commands with `python -m docpilot` (e.g., `python -m docpilot ingest ...`).
70
+
68
71
  ### 2. Ask Questions
69
72
  Query your newly created local knowledge base:
70
73
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "docpilot-cli"
3
- version = "1.0.1"
3
+ version = "1.0.2"
4
4
  description = "A local-first RAG pipeline CLI tool"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.12"
@@ -0,0 +1,4 @@
1
+ from docpilot.cli import app
2
+
3
+ if __name__ == "__main__":
4
+ app()
@@ -21,7 +21,7 @@ console = Console()
21
21
  app = typer.Typer()
22
22
 
23
23
  # Project metadata
24
- PROJECT_VERSION = "1.0.0"
24
+ PROJECT_VERSION = "1.0.2"
25
25
  PROJECT_NAME = "docpilot"
26
26
  PROJECT_DESCRIPTION = "A local-first RAG pipeline CLI tool"
27
27
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: docpilot-cli
3
- Version: 1.0.1
3
+ Version: 1.0.2
4
4
  Summary: A local-first RAG pipeline CLI tool
5
5
  Requires-Python: >=3.12
6
6
  Description-Content-Type: text/markdown
@@ -87,6 +87,9 @@ docpilot ingest "./docs/engineering_handbook.pdf"
87
87
  docpilot ingest "./data/faq.csv"
88
88
  ```
89
89
 
90
+ > [!TIP]
91
+ > If you installed via standard `pip` and get a "command not found" error because your binary path isn't configured, you can always run docpilot by prefixing commands with `python -m docpilot` (e.g., `python -m docpilot ingest ...`).
92
+
90
93
  ### 2. Ask Questions
91
94
  Query your newly created local knowledge base:
92
95
 
@@ -2,6 +2,7 @@ LICENSE
2
2
  README.md
3
3
  pyproject.toml
4
4
  src/docpilot/__init__.py
5
+ src/docpilot/__main__.py
5
6
  src/docpilot/chat.py
6
7
  src/docpilot/cli.py
7
8
  src/docpilot/embed.py
File without changes
File without changes