Upload Conversation Logs
Evaluate real production conversations against security judges. This is useful for testing actual user interactions with your AI agent.
Deprecation
hb upload-logs is deprecated. Use hb logs upload instead.
Upload from File
Upload with Custom Tag
Specify Language
Expected JSON Format
[
{
"conversation": [
{"u": "user message", "a": "agent response"},
{"u": "follow up", "a": "agent reply"}
],
"thread_id": "optional-thread-id"
},
{
"conversation": [
{"u": "another conversation", "a": "agent response"}
],
"thread_id": "thread-2"
}
]
Each conversation object should contain an array of turn pairs (user input and agent response). The thread_id is optional but recommended for tracking.