You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Primary install is now `pip install thinkbooster`
- setup.sh moved to optional section for advanced scorers
- Added PyPI badge
- Updated Python version badge to 3.10+
- Removed lm-polygraph submodule from project structure
Some advanced scorers require GitHub-only dependencies. Run `setup.sh` after pip install:
38
47
39
-
# Install dependencies
48
+
```bash
40
49
./setup.sh
50
+
```
51
+
52
+
This installs `llm-uncertainty-head`, `vllm-speculators`, and `KernelAct`. Core functionality (all strategies, PRM/entropy/probability scorers, evaluation) works without these.
41
53
42
-
# Configure API keys
54
+
</details>
55
+
56
+
```bash
57
+
# Configure API keys (optional, for LLM judge and OpenRouter)
43
58
cp .env.example .env
44
-
# Edit .env and add your OPENROUTER_API_KEY
45
59
```
46
60
47
61
### REST API
@@ -151,7 +165,7 @@ thinkbooster/
151
165
├── service_app/ # REST API service + visual debugger
0 commit comments