@superadnim/rlm-pro 1.0.0 → 1.0.1
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.
- package/README.md +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -40,7 +40,7 @@ npx rlm-codebase ./my-project -q "Explain the architecture"
|
|
|
40
40
|
npx rlm-codebase ./my-project -q "List all API endpoints" --json
|
|
41
41
|
|
|
42
42
|
# Use a specific model
|
|
43
|
-
npx rlm-codebase ./my-project -q "Find potential bugs" -m gpt-
|
|
43
|
+
npx rlm-codebase ./my-project -q "Find potential bugs" -m gpt-5.2
|
|
44
44
|
|
|
45
45
|
# Use Anthropic backend
|
|
46
46
|
npx rlm-codebase ./my-project -q "Review this code" -b anthropic
|
|
@@ -61,7 +61,7 @@ async function main() {
|
|
|
61
61
|
const result = await analyzeCodebase('./my-project', {
|
|
62
62
|
query: 'Summarize the codebase structure',
|
|
63
63
|
backend: 'openai',
|
|
64
|
-
model: 'gpt-
|
|
64
|
+
model: 'gpt-5.2',
|
|
65
65
|
});
|
|
66
66
|
|
|
67
67
|
console.log(result.response);
|
|
@@ -77,7 +77,7 @@ main();
|
|
|
77
77
|
|--------|-------------|---------|
|
|
78
78
|
| `-q, --query <query>` | Question or task to perform (required) | - |
|
|
79
79
|
| `-b, --backend <backend>` | LLM backend (openai, anthropic, etc.) | `openai` |
|
|
80
|
-
| `-m, --model <model>` | Model name | `gpt-
|
|
80
|
+
| `-m, --model <model>` | Model name | `gpt-5.2` |
|
|
81
81
|
| `-e, --env <env>` | Execution environment (local, docker) | `local` |
|
|
82
82
|
| `--max-depth <n>` | Maximum recursion depth | `1` |
|
|
83
83
|
| `--max-iterations <n>` | Maximum iterations | `30` |
|
package/package.json
CHANGED