curl --request POST \
--url https://api.example.com/v1/preview/training-jobs \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"model_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"trajectory_groups": [
{
"trajectories": [
{
"messages_and_choices": [
{
"content": "<string>",
"role": "<string>",
"name": "<string>"
}
],
"reward": 123,
"tools": [
{
"function": {
"name": "<string>",
"description": "<string>",
"parameters": {},
"strict": true
},
"type": "<string>"
}
],
"additional_histories": [],
"metrics": {},
"metadata": {},
"logs": [],
"start_time": "2023-11-07T05:31:56Z"
}
]
}
],
"experimental_config": {
"learning_rate": 123,
"precalculate_logprobs": true
}
}
'