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.
- package/README.md +11 -3
- 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
|
|
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
|
|
169
|
-
export
|
|
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