BulkAddTagsResponseSchema
Indicates the result of the operation. Typically "success".
updated_logs object[]required
Training log entries that were successfully tagged.
ISO 8601 timestamp when the log was created.
Whether synthetic messages have been generated for this log.
Unique numeric identifier for the log entry.
Additional keyword arguments stored with the log, if any.
messages object[]required
Ordered list of chat messages in this log.
The role of the message author. system sets the assistant's behavior and persona. user represents input from the human turn. assistant represents a prior model response included for multi-turn context.
The text content of the message.
Name of the model that generated the response in this log.
Synthesized messages generated from this log, if any.
Comma-separated tag names applied to this log.
ISO 8601 timestamp of the most recent update.
ID of the user who created this log entry.
ID of the organization that owns this log entry.
Token usage statistics for this log entry, if recorded.
Any log entries that could not be tagged, with error details.
{
"status": "string",
"updated_logs": [
{
"created_at": "string",
"has_been_synthesized": true,
"id": 0,
"kwargs": {},
"messages": [
{
"role": "system",
"content": null
}
],
"model": "string",
"synthetic_messages": [
null
],
"tags": "string",
"updated_at": "string",
"user_id": 0,
"organization_id": 0,
"usage": {}
}
],
"errors": [
{}
]
}