rekipedia 0.11.0 → 0.12.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 +8 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -120,8 +120,16 @@ llm:
|
|
|
120
120
|
export REKIPEDIA_MODEL=gpt-5.5
|
|
121
121
|
export REKIPEDIA_API_KEY=sk-...
|
|
122
122
|
export REKIPEDIA_BASE_URL=https://my-proxy/v1
|
|
123
|
+
export REKIPEDIA_SHARD_TOKEN_BUDGET=40000
|
|
123
124
|
```
|
|
124
125
|
|
|
126
|
+
| Variable | Description |
|
|
127
|
+
|---|---|
|
|
128
|
+
| `REKIPEDIA_MODEL` | LLM model name to use |
|
|
129
|
+
| `REKIPEDIA_API_KEY` | API key for the LLM provider |
|
|
130
|
+
| `REKIPEDIA_BASE_URL` | Base URL for OpenAI-compatible endpoints |
|
|
131
|
+
| `REKIPEDIA_SHARD_TOKEN_BUDGET` | Max tokens per shard group (default: 40000) |
|
|
132
|
+
|
|
125
133
|
---
|
|
126
134
|
|
|
127
135
|
## Output
|
package/package.json
CHANGED