Installation
Get evsys-sdk installed and run your first experiment without a GPU.
Requirements
- Python 3.12+
uv(recommended) for environment management
Install
cd evsys-sdk
uv sync
source .venv/bin/activateFor real Tinker training, export your key:
export TINKER_API_KEY=...Verify
Run the test suite:
pytest tests/Then run the no-GPU, no-network hello world:
python examples/01_local_mock_sft.pyYou should see a final_checkpoint artifact and a metrics.jsonl under
examples/outputs/01/.../logs/. Continue with the Cookbook.
Introduction
A declarative framework for LLM training experiments - SFT, RL, and distillation from a single YAML, built so coding agents can launch experiments, learn from them, and train models continuously.
Quickstart
Train your first model in five minutes - no GPU, no network - then point it at a real backend.