curl --request POST \
--url http://localhost:8080/v1/repo/{repo_name}/targets \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"overrides": {
"generators": [
{
"model": "claude-3-5-sonnet-20241022",
"numq": 10,
"temperature": 1,
"type": "oneshot_qs"
},
{
"dataset": "code_contests",
"numq": 15,
"seed": 42,
"type": "from_dataset"
},
{
"questions": [
"Write a function to reverse a string",
"Implement binary search",
"Create a linked list class"
],
"rollout_with_conditioned": false,
"type": "hardcoded"
},
{
"numq": 5,
"seed": 123,
"temperature": 0.9,
"type": "persona"
}
],
"max_concurrency": 50,
"max_tokens": 150,
"model_name": "Qwen/Qwen3-32B",
"num_traj_per_stimulus": 5,
"student_prompt": "user_prompt_v1",
"teacher_prompt": "system_prompt_v1",
"temperature": 1
},
"template": "default"
}
'