Sign in

Validate fine-tuning grader

documented

Validate a grader for fine-tuning.

POST /fine_tuning/alpha/graders/validateFine-Tuningno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

# Docs: OpenAI API Graders Validate endpoint (https://platform.openai.com/docs/api-reference/graders/validate)

npx -y keychains@latest curl "https://api.openai.com/v1/fine_tuning/alpha/graders/validate" \
  -H "Authorization: Bearer {{OPENAI_API_KEY}}" \
  -H "Content-Type: application/json" \
  -d '{"grader": {"type": "string_check", "name": "Example string check grader", "input": "{{$sample.output_text}}", "reference": "{{$item.label}}", "operation": "eq"}}'