tessl install tessl/pypi-azure-servicebus@7.14.0Microsoft Azure Service Bus Client Library for Python providing comprehensive messaging capabilities for enterprise applications.
Agent Success
Agent success rate when using this tile
92%
Improvement
Agent success rate improvement when using this tile compared to baseline
1.01x
Baseline
Agent success rate without this tile
91%
{
"context": "This criteria evaluates how well the engineer uses the Azure Service Bus SDK to create messages with various properties. The focus is on proper usage of ServiceBusMessage class and its property setters for routing, application, temporal, and session properties.",
"type": "weighted_checklist",
"checklist": [
{
"name": "ServiceBusMessage instantiation",
"description": "Creates ServiceBusMessage instance using ServiceBusMessage() constructor with the notification content as the body parameter",
"max_score": 15
},
{
"name": "Routing properties",
"description": "Sets message routing properties: message_id, content_type (to 'application/json'), correlation_id (from notification_id), to property (from recipient), and subject (to 'notification')",
"max_score": 25
},
{
"name": "Application properties",
"description": "Sets application_properties dictionary with custom metadata from notification_data (priority and tags when present)",
"max_score": 20
},
{
"name": "Time-to-live property",
"description": "Sets time_to_live property using timedelta when time_to_live parameter is provided, converting seconds to timedelta object",
"max_score": 15
},
{
"name": "Scheduled time property",
"description": "Sets scheduled_enqueue_time_utc property with the provided datetime when scheduled_time parameter is provided",
"max_score": 10
},
{
"name": "Session properties",
"description": "Sets session_id and reply_to_session_id properties from notification_data when present, handling cases where only session_id is provided",
"max_score": 15
}
]
}