curl --request PUT \
--url 'https://api.unify.ai/v0/logs' \
--header "Authorization: Bearer $UNIFY_KEY" \
--header 'Content-Type: application/json' \
--data '{
"project": "eval-project",
"context": "experiment1/trial1",
"params": {
"explicit_types": {
"category": {
"description": "Task category",
"restrict": false,
"type": "enum",
"values": [
"A",
"B",
"C"
]
},
"priority": {
"type": "enum"
},
"system-prompt": {
"description": "System prompt for the model",
"mutable": true,
"type": "str"
}
},
"function_definition": "...",
"system-prompt": "..."
},
"entries": {
"explicit_types": {
"input": {
"description": "Input data for processing",
"mutable": true,
"type": "Image"
},
"label": {
"type": "enum"
},
"status": {
"description": "Current processing status",
"restrict": true,
"type": "enum",
"values": [
"pending",
"completed",
"failed"
]
}
},
"input": "...",
"score-test-1": "..."
},
"overwrite": false
}'