Submission method
Create a result
Run one model at a time. Store its result file and evidence directory together.
Ollama
MODEL=qwen2.5:7b-instruct
OUT=results/ollama-qwen2.5-7b-instruct.json
cargo run -p willitcall -- run \
--model "$MODEL" \
--server ollama \
--out "$OUT"
cargo run -p willitcall -- validate "$OUT"
llama.cpp
MODEL_PATH=/absolute/path/to/model.Q4_K_M.gguf
OUT=results/llamacpp-model-q4_k_m.json
cargo run -p willitcall -- run \
--model "$MODEL_PATH" \
--server llamacpp \
--out "$OUT"
cargo run -p willitcall -- validate "$OUT"
Pull request checklist
- Confirm that preflight is clean and has no contention override. Explain any override.
- Validate the result file against the schema.
- Include the evidence transcripts.
- Cross-check empty responses on a second server as required by the seeding protocol.
Read CONTRIBUTING.md for the complete contribution rules.