EvSys

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/activate

For 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.py

You should see a final_checkpoint artifact and a metrics.jsonl under examples/outputs/01/.../logs/. Continue with the Cookbook.

On this page