rlmgrep 0.1.12__tar.gz → 0.1.13__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.
- {rlmgrep-0.1.12 → rlmgrep-0.1.13}/PKG-INFO +2 -2
- {rlmgrep-0.1.12 → rlmgrep-0.1.13}/README.md +1 -1
- {rlmgrep-0.1.12 → rlmgrep-0.1.13}/pyproject.toml +1 -1
- {rlmgrep-0.1.12 → rlmgrep-0.1.13}/rlmgrep/__init__.py +1 -1
- {rlmgrep-0.1.12 → rlmgrep-0.1.13}/rlmgrep/ingest.py +1 -4
- {rlmgrep-0.1.12 → rlmgrep-0.1.13}/rlmgrep.egg-info/PKG-INFO +2 -2
- {rlmgrep-0.1.12 → rlmgrep-0.1.13}/rlmgrep/__main__.py +0 -0
- {rlmgrep-0.1.12 → rlmgrep-0.1.13}/rlmgrep/cli.py +0 -0
- {rlmgrep-0.1.12 → rlmgrep-0.1.13}/rlmgrep/config.py +0 -0
- {rlmgrep-0.1.12 → rlmgrep-0.1.13}/rlmgrep/file_map.py +0 -0
- {rlmgrep-0.1.12 → rlmgrep-0.1.13}/rlmgrep/interpreter.py +0 -0
- {rlmgrep-0.1.12 → rlmgrep-0.1.13}/rlmgrep/render.py +0 -0
- {rlmgrep-0.1.12 → rlmgrep-0.1.13}/rlmgrep/rlm.py +0 -0
- {rlmgrep-0.1.12 → rlmgrep-0.1.13}/rlmgrep.egg-info/SOURCES.txt +0 -0
- {rlmgrep-0.1.12 → rlmgrep-0.1.13}/rlmgrep.egg-info/dependency_links.txt +0 -0
- {rlmgrep-0.1.12 → rlmgrep-0.1.13}/rlmgrep.egg-info/entry_points.txt +0 -0
- {rlmgrep-0.1.12 → rlmgrep-0.1.13}/rlmgrep.egg-info/requires.txt +0 -0
- {rlmgrep-0.1.12 → rlmgrep-0.1.13}/rlmgrep.egg-info/top_level.txt +0 -0
- {rlmgrep-0.1.12 → rlmgrep-0.1.13}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rlmgrep
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.13
|
|
4
4
|
Summary: Grep-shaped CLI search powered by DSPy RLM
|
|
5
5
|
Author: rlmgrep
|
|
6
6
|
License: MIT
|
|
@@ -13,7 +13,7 @@ Requires-Dist: pypdf>=4.0.0
|
|
|
13
13
|
|
|
14
14
|
# rlmgrep
|
|
15
15
|
|
|
16
|
-
Grep-shaped search powered by DSPy RLM. It accepts a natural-language query, scans the files you point at, and prints matching lines in a grep-like format.
|
|
16
|
+
Grep-shaped search powered by DSPy RLM. It accepts a natural-language query, scans the files you point at, and prints matching lines in a grep-like format. Use `--answer` to get a narrative response grounded in the selected files/directories.
|
|
17
17
|
|
|
18
18
|
## Quickstart
|
|
19
19
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# rlmgrep
|
|
2
2
|
|
|
3
|
-
Grep-shaped search powered by DSPy RLM. It accepts a natural-language query, scans the files you point at, and prints matching lines in a grep-like format.
|
|
3
|
+
Grep-shaped search powered by DSPy RLM. It accepts a natural-language query, scans the files you point at, and prints matching lines in a grep-like format. Use `--answer` to get a narrative response grounded in the selected files/directories.
|
|
4
4
|
|
|
5
5
|
## Quickstart
|
|
6
6
|
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
__all__ = ["__version__"]
|
|
2
|
-
__version__ = "0.1.
|
|
2
|
+
__version__ = "0.1.13"
|
|
@@ -6,10 +6,7 @@ import os
|
|
|
6
6
|
from pathlib import Path, PurePosixPath
|
|
7
7
|
from typing import Any, Callable, Iterable
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
import pathspec
|
|
11
|
-
except Exception: # pragma: no cover - optional at import time
|
|
12
|
-
pathspec = None
|
|
9
|
+
import pathspec
|
|
13
10
|
|
|
14
11
|
from pypdf import PdfReader
|
|
15
12
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rlmgrep
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.13
|
|
4
4
|
Summary: Grep-shaped CLI search powered by DSPy RLM
|
|
5
5
|
Author: rlmgrep
|
|
6
6
|
License: MIT
|
|
@@ -13,7 +13,7 @@ Requires-Dist: pypdf>=4.0.0
|
|
|
13
13
|
|
|
14
14
|
# rlmgrep
|
|
15
15
|
|
|
16
|
-
Grep-shaped search powered by DSPy RLM. It accepts a natural-language query, scans the files you point at, and prints matching lines in a grep-like format.
|
|
16
|
+
Grep-shaped search powered by DSPy RLM. It accepts a natural-language query, scans the files you point at, and prints matching lines in a grep-like format. Use `--answer` to get a narrative response grounded in the selected files/directories.
|
|
17
17
|
|
|
18
18
|
## Quickstart
|
|
19
19
|
|
|
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
|