rlmgrep 0.1.31__tar.gz → 0.1.32__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: rlmgrep
3
- Version: 0.1.31
3
+ Version: 0.1.32
4
4
  Summary: Grep-shaped CLI search powered by DSPy RLM
5
5
  Author: rlmgrep
6
6
  License: MIT
@@ -100,7 +100,7 @@ Common options:
100
100
  - `--no-recursive` do not recurse directories
101
101
  - `-a`, `--text` treat binary files as text
102
102
  - `-y`, `--yes` skip file count confirmation
103
- - `--paths-from-stdin` treat stdin as newline-delimited file paths (e.g., `rg -l`)
103
+ - `--paths-from-stdin` treat stdin as newline-delimited file paths (e.g., `rg -l`). Without this flag, piped stdin is treated as content.
104
104
  - `--model`, `--sub-model` override model names
105
105
  - `--api-key`, `--api-base`, `--model-type` override provider settings
106
106
  - `--max-iterations`, `--max-llm-calls` cap RLM search effort
@@ -118,7 +118,7 @@ rlmgrep "Where do we parse JWTs and enforce expiration?" --type py .
118
118
  # Glob filters (repeatable or comma-separated)
119
119
  rlmgrep "How do we map external API errors into internal error codes?" -g "**/*.py" -g "**/*.ts" .
120
120
 
121
- # Single-file semantic question (when you already have the file)
121
+ # Read file content from stdin
122
122
  cat README.md | rlmgrep --answer "What is this tool for and how is it used?"
123
123
 
124
124
  # Use rg/grep to find candidate files, then rlmgrep over that list
@@ -86,7 +86,7 @@ Common options:
86
86
  - `--no-recursive` do not recurse directories
87
87
  - `-a`, `--text` treat binary files as text
88
88
  - `-y`, `--yes` skip file count confirmation
89
- - `--paths-from-stdin` treat stdin as newline-delimited file paths (e.g., `rg -l`)
89
+ - `--paths-from-stdin` treat stdin as newline-delimited file paths (e.g., `rg -l`). Without this flag, piped stdin is treated as content.
90
90
  - `--model`, `--sub-model` override model names
91
91
  - `--api-key`, `--api-base`, `--model-type` override provider settings
92
92
  - `--max-iterations`, `--max-llm-calls` cap RLM search effort
@@ -104,7 +104,7 @@ rlmgrep "Where do we parse JWTs and enforce expiration?" --type py .
104
104
  # Glob filters (repeatable or comma-separated)
105
105
  rlmgrep "How do we map external API errors into internal error codes?" -g "**/*.py" -g "**/*.ts" .
106
106
 
107
- # Single-file semantic question (when you already have the file)
107
+ # Read file content from stdin
108
108
  cat README.md | rlmgrep --answer "What is this tool for and how is it used?"
109
109
 
110
110
  # Use rg/grep to find candidate files, then rlmgrep over that list
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "rlmgrep"
3
- version = "0.1.31"
3
+ version = "0.1.32"
4
4
  description = "Grep-shaped CLI search powered by DSPy RLM"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.11"
@@ -1,2 +1,2 @@
1
1
  __all__ = ["__version__"]
2
- __version__ = "0.1.31"
2
+ __version__ = "0.1.32"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rlmgrep
3
- Version: 0.1.31
3
+ Version: 0.1.32
4
4
  Summary: Grep-shaped CLI search powered by DSPy RLM
5
5
  Author: rlmgrep
6
6
  License: MIT
@@ -100,7 +100,7 @@ Common options:
100
100
  - `--no-recursive` do not recurse directories
101
101
  - `-a`, `--text` treat binary files as text
102
102
  - `-y`, `--yes` skip file count confirmation
103
- - `--paths-from-stdin` treat stdin as newline-delimited file paths (e.g., `rg -l`)
103
+ - `--paths-from-stdin` treat stdin as newline-delimited file paths (e.g., `rg -l`). Without this flag, piped stdin is treated as content.
104
104
  - `--model`, `--sub-model` override model names
105
105
  - `--api-key`, `--api-base`, `--model-type` override provider settings
106
106
  - `--max-iterations`, `--max-llm-calls` cap RLM search effort
@@ -118,7 +118,7 @@ rlmgrep "Where do we parse JWTs and enforce expiration?" --type py .
118
118
  # Glob filters (repeatable or comma-separated)
119
119
  rlmgrep "How do we map external API errors into internal error codes?" -g "**/*.py" -g "**/*.ts" .
120
120
 
121
- # Single-file semantic question (when you already have the file)
121
+ # Read file content from stdin
122
122
  cat README.md | rlmgrep --answer "What is this tool for and how is it used?"
123
123
 
124
124
  # Use rg/grep to find candidate files, then rlmgrep over that list
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes