rlmgrep 0.1.30__tar.gz → 0.1.31__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.30 → rlmgrep-0.1.31}/PKG-INFO +4 -4
- {rlmgrep-0.1.30 → rlmgrep-0.1.31}/README.md +3 -3
- {rlmgrep-0.1.30 → rlmgrep-0.1.31}/pyproject.toml +1 -1
- {rlmgrep-0.1.30 → rlmgrep-0.1.31}/rlmgrep/__init__.py +1 -1
- {rlmgrep-0.1.30 → rlmgrep-0.1.31}/rlmgrep/cli.py +2 -2
- {rlmgrep-0.1.30 → rlmgrep-0.1.31}/rlmgrep/config.py +2 -2
- {rlmgrep-0.1.30 → rlmgrep-0.1.31}/rlmgrep.egg-info/PKG-INFO +4 -4
- {rlmgrep-0.1.30 → rlmgrep-0.1.31}/rlmgrep/__main__.py +0 -0
- {rlmgrep-0.1.30 → rlmgrep-0.1.31}/rlmgrep/file_map.py +0 -0
- {rlmgrep-0.1.30 → rlmgrep-0.1.31}/rlmgrep/ingest.py +0 -0
- {rlmgrep-0.1.30 → rlmgrep-0.1.31}/rlmgrep/interpreter.py +0 -0
- {rlmgrep-0.1.30 → rlmgrep-0.1.31}/rlmgrep/render.py +0 -0
- {rlmgrep-0.1.30 → rlmgrep-0.1.31}/rlmgrep/rlm.py +0 -0
- {rlmgrep-0.1.30 → rlmgrep-0.1.31}/rlmgrep.egg-info/SOURCES.txt +0 -0
- {rlmgrep-0.1.30 → rlmgrep-0.1.31}/rlmgrep.egg-info/dependency_links.txt +0 -0
- {rlmgrep-0.1.30 → rlmgrep-0.1.31}/rlmgrep.egg-info/entry_points.txt +0 -0
- {rlmgrep-0.1.30 → rlmgrep-0.1.31}/rlmgrep.egg-info/requires.txt +0 -0
- {rlmgrep-0.1.30 → rlmgrep-0.1.31}/rlmgrep.egg-info/top_level.txt +0 -0
- {rlmgrep-0.1.30 → rlmgrep-0.1.31}/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.31
|
|
4
4
|
Summary: Grep-shaped CLI search powered by DSPy RLM
|
|
5
5
|
Author: rlmgrep
|
|
6
6
|
License: MIT
|
|
@@ -133,7 +133,7 @@ rg -l "token" . | rlmgrep --paths-from-stdin --answer "What does this token cont
|
|
|
133
133
|
- `-g/--glob` matches path globs against normalized paths (forward slashes).
|
|
134
134
|
- Paths are printed relative to the current working directory when possible.
|
|
135
135
|
- If no paths are provided and stdin is a TTY, rlmgrep defaults to `.`. If stdin is piped, it reads from stdin and uses the synthetic path `<stdin>`.
|
|
136
|
-
- rlmgrep asks for confirmation when more than
|
|
136
|
+
- rlmgrep asks for confirmation when more than 1000 files would be loaded (use `-y/--yes` to skip), and aborts when more than 5000 files would be loaded.
|
|
137
137
|
|
|
138
138
|
## Output contract (stable for agents)
|
|
139
139
|
|
|
@@ -178,8 +178,8 @@ temperature = 1.0
|
|
|
178
178
|
max_tokens = 64000
|
|
179
179
|
max_iterations = 10
|
|
180
180
|
max_llm_calls = 20
|
|
181
|
-
file_warn_threshold =
|
|
182
|
-
file_hard_max =
|
|
181
|
+
file_warn_threshold = 1000
|
|
182
|
+
file_hard_max = 5000
|
|
183
183
|
# markitdown_enable_images = false
|
|
184
184
|
# markitdown_image_llm_model = "gpt-5-mini"
|
|
185
185
|
# markitdown_image_llm_provider = "openai"
|
|
@@ -119,7 +119,7 @@ rg -l "token" . | rlmgrep --paths-from-stdin --answer "What does this token cont
|
|
|
119
119
|
- `-g/--glob` matches path globs against normalized paths (forward slashes).
|
|
120
120
|
- Paths are printed relative to the current working directory when possible.
|
|
121
121
|
- If no paths are provided and stdin is a TTY, rlmgrep defaults to `.`. If stdin is piped, it reads from stdin and uses the synthetic path `<stdin>`.
|
|
122
|
-
- rlmgrep asks for confirmation when more than
|
|
122
|
+
- rlmgrep asks for confirmation when more than 1000 files would be loaded (use `-y/--yes` to skip), and aborts when more than 5000 files would be loaded.
|
|
123
123
|
|
|
124
124
|
## Output contract (stable for agents)
|
|
125
125
|
|
|
@@ -164,8 +164,8 @@ temperature = 1.0
|
|
|
164
164
|
max_tokens = 64000
|
|
165
165
|
max_iterations = 10
|
|
166
166
|
max_llm_calls = 20
|
|
167
|
-
file_warn_threshold =
|
|
168
|
-
file_hard_max =
|
|
167
|
+
file_warn_threshold = 1000
|
|
168
|
+
file_hard_max = 5000
|
|
169
169
|
# markitdown_enable_images = false
|
|
170
170
|
# markitdown_image_llm_model = "gpt-5-mini"
|
|
171
171
|
# markitdown_image_llm_provider = "openai"
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
__all__ = ["__version__"]
|
|
2
|
-
__version__ = "0.1.
|
|
2
|
+
__version__ = "0.1.31"
|
|
@@ -570,9 +570,9 @@ def main(argv: list[str] | None = None) -> int:
|
|
|
570
570
|
warnings: list[str] = []
|
|
571
571
|
else:
|
|
572
572
|
warn_threshold = _parse_num(
|
|
573
|
-
_pick(None, config, "file_warn_threshold",
|
|
573
|
+
_pick(None, config, "file_warn_threshold", 1000), int
|
|
574
574
|
)
|
|
575
|
-
hard_max = _parse_num(_pick(None, config, "file_hard_max",
|
|
575
|
+
hard_max = _parse_num(_pick(None, config, "file_hard_max", 5000), int)
|
|
576
576
|
if warn_threshold is not None and warn_threshold <= 0:
|
|
577
577
|
warn_threshold = None
|
|
578
578
|
if hard_max is not None and hard_max <= 0:
|
|
@@ -16,8 +16,8 @@ DEFAULT_CONFIG_TEXT = "\n".join(
|
|
|
16
16
|
"max_tokens = 64000",
|
|
17
17
|
"max_iterations = 10",
|
|
18
18
|
"max_llm_calls = 20",
|
|
19
|
-
"file_warn_threshold =
|
|
20
|
-
"file_hard_max =
|
|
19
|
+
"file_warn_threshold = 1000",
|
|
20
|
+
"file_hard_max = 5000",
|
|
21
21
|
"# markitdown_enable_images = false",
|
|
22
22
|
"# markitdown_image_llm_model = \"gpt-5-mini\"",
|
|
23
23
|
"# markitdown_image_llm_provider = \"openai\"",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rlmgrep
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.31
|
|
4
4
|
Summary: Grep-shaped CLI search powered by DSPy RLM
|
|
5
5
|
Author: rlmgrep
|
|
6
6
|
License: MIT
|
|
@@ -133,7 +133,7 @@ rg -l "token" . | rlmgrep --paths-from-stdin --answer "What does this token cont
|
|
|
133
133
|
- `-g/--glob` matches path globs against normalized paths (forward slashes).
|
|
134
134
|
- Paths are printed relative to the current working directory when possible.
|
|
135
135
|
- If no paths are provided and stdin is a TTY, rlmgrep defaults to `.`. If stdin is piped, it reads from stdin and uses the synthetic path `<stdin>`.
|
|
136
|
-
- rlmgrep asks for confirmation when more than
|
|
136
|
+
- rlmgrep asks for confirmation when more than 1000 files would be loaded (use `-y/--yes` to skip), and aborts when more than 5000 files would be loaded.
|
|
137
137
|
|
|
138
138
|
## Output contract (stable for agents)
|
|
139
139
|
|
|
@@ -178,8 +178,8 @@ temperature = 1.0
|
|
|
178
178
|
max_tokens = 64000
|
|
179
179
|
max_iterations = 10
|
|
180
180
|
max_llm_calls = 20
|
|
181
|
-
file_warn_threshold =
|
|
182
|
-
file_hard_max =
|
|
181
|
+
file_warn_threshold = 1000
|
|
182
|
+
file_hard_max = 5000
|
|
183
183
|
# markitdown_enable_images = false
|
|
184
184
|
# markitdown_image_llm_model = "gpt-5-mini"
|
|
185
185
|
# markitdown_image_llm_provider = "openai"
|
|
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
|