@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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. 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-4o
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-4o',
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-4o` |
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@superadnim/rlm-pro",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "RLM PRO - Enterprise-grade Recursive Language Models for infinite context code analysis. Analyze entire codebases with AI.",
5
5
  "main": "src/index.js",
6
6
  "bin": {