curl --request POST \
--url https://api.openpipe.ai/api/v1/datasets/{datasetId}/entries \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"entries": [
{
"messages": [
{
"role": "system",
"content": "",
"name": "<string>"
}
],
"tool_choice": "none",
"tools": [
{
"function": {
"name": "<string>",
"parameters": {},
"description": "<string>",
"strict": true
},
"type": "function"
}
],
"response_format": {
"type": "text"
},
"split": "TRAIN",
"metadata": {}
}
]
}
'