rlmgrep 0.1.8__tar.gz → 0.1.9__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.8
3
+ Version: 0.1.9
4
4
  Summary: Grep-shaped CLI search powered by DSPy RLM
5
5
  Author: rlmgrep
6
6
  License: MIT
@@ -22,7 +22,8 @@ uv tool install rlmgrep
22
22
  # uv tool install git+https://github.com/halfprice06/rlmgrep.git
23
23
 
24
24
  export OPENAI_API_KEY=... # or set keys in ~/.rlmgrep
25
- rlmgrep "where are API keys read" rlmgrep/
25
+ rlmgrep --answer "What does this repo do and where are the entry points?" .
26
+ rlmgrep -n -C 2 "Where is retry/backoff configured and what are the defaults?" .
26
27
  ```
27
28
 
28
29
  ## Requirements
@@ -75,6 +76,7 @@ rlmgrep [options] "query" [paths...]
75
76
 
76
77
  Common options:
77
78
 
79
+ - `--answer` return a narrative answer before the grep output
78
80
  - `-C N` context lines before/after (grep-style)
79
81
  - `-A N` context lines after
80
82
  - `-B N` context lines before
@@ -10,7 +10,8 @@ uv tool install rlmgrep
10
10
  # uv tool install git+https://github.com/halfprice06/rlmgrep.git
11
11
 
12
12
  export OPENAI_API_KEY=... # or set keys in ~/.rlmgrep
13
- rlmgrep "where are API keys read" rlmgrep/
13
+ rlmgrep --answer "What does this repo do and where are the entry points?" .
14
+ rlmgrep -n -C 2 "Where is retry/backoff configured and what are the defaults?" .
14
15
  ```
15
16
 
16
17
  ## Requirements
@@ -63,6 +64,7 @@ rlmgrep [options] "query" [paths...]
63
64
 
64
65
  Common options:
65
66
 
67
+ - `--answer` return a narrative answer before the grep output
66
68
  - `-C N` context lines before/after (grep-style)
67
69
  - `-A N` context lines after
68
70
  - `-B N` context lines before
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "rlmgrep"
3
- version = "0.1.8"
3
+ version = "0.1.9"
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.8"
2
+ __version__ = "0.1.9"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rlmgrep
3
- Version: 0.1.8
3
+ Version: 0.1.9
4
4
  Summary: Grep-shaped CLI search powered by DSPy RLM
5
5
  Author: rlmgrep
6
6
  License: MIT
@@ -22,7 +22,8 @@ uv tool install rlmgrep
22
22
  # uv tool install git+https://github.com/halfprice06/rlmgrep.git
23
23
 
24
24
  export OPENAI_API_KEY=... # or set keys in ~/.rlmgrep
25
- rlmgrep "where are API keys read" rlmgrep/
25
+ rlmgrep --answer "What does this repo do and where are the entry points?" .
26
+ rlmgrep -n -C 2 "Where is retry/backoff configured and what are the defaults?" .
26
27
  ```
27
28
 
28
29
  ## Requirements
@@ -75,6 +76,7 @@ rlmgrep [options] "query" [paths...]
75
76
 
76
77
  Common options:
77
78
 
79
+ - `--answer` return a narrative answer before the grep output
78
80
  - `-C N` context lines before/after (grep-style)
79
81
  - `-A N` context lines after
80
82
  - `-B N` context lines before
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