rekipedia 0.21.2 → 0.22.0

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 +11 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -28,7 +28,8 @@ pip install rekipedia
28
28
  ### With LLM (richer wiki + Q&A)
29
29
 
30
30
  ```bash
31
- export REKIPEDIA_API_KEY=sk-...
31
+ export REKIPEDIA_MODEL=gemini/gemini-2.5-flash
32
+ export GOOGLE_API_KEY=...
32
33
  reki scan .
33
34
  reki ask "how does authentication work?"
34
35
  ```
@@ -165,8 +166,15 @@ Once configured, each tool automatically gets access to these rekipedia MCP tool
165
166
  rekipedia works without an LLM (`--no-llm`). To enable richer summaries and Q&A:
166
167
 
167
168
  ```bash
168
- export REKIPEDIA_API_KEY=sk-... # OpenAI, Anthropic, or compatible
169
- export REKIPEDIA_MODEL=gpt-4o # default: gpt-4o
169
+ export REKIPEDIA_MODEL=gemini/gemini-2.5-pro
170
+ export GOOGLE_API_KEY=...
171
+ ```
172
+
173
+ Or use a provider-agnostic key:
174
+
175
+ ```bash
176
+ export REKIPEDIA_MODEL=openai/gpt-4o
177
+ export REKIPEDIA_API_KEY=sk-...
170
178
  ```
171
179
 
172
180
  Any OpenAI-compatible endpoint works:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rekipedia",
3
- "version": "0.21.2",
3
+ "version": "0.22.0",
4
4
  "description": "Agentic repo-to-wiki: scan any repository into a portable SQLite knowledge store with wiki pages, diagrams, and grounded Q&A.",
5
5
  "bin": {
6
6
  "rekipedia": "./bin/rekipedia.js"