or run

tessl search
Log in

Version

Workspace
tessl
Visibility
Public
Created
Last updated
Describes
pypipkg:pypi/azure-servicebus@7.14.x
tile.json

tessl/pypi-azure-servicebus

tessl install tessl/pypi-azure-servicebus@7.14.0

Microsoft 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%

rubric.jsonevals/scenario-8/

{
  "context": "This criteria evaluates the engineer's proficiency in using the Azure Service Bus SDK's AMQP message annotation capabilities. It focuses on whether the engineer correctly uses AmqpAnnotatedMessage to set message annotations and accesses the raw_amqp_message property to read annotations from received messages.",
  "type": "weighted_checklist",
  "checklist": [
    {
      "name": "AmqpAnnotatedMessage usage",
      "description": "Uses AmqpAnnotatedMessage class to create messages that support setting annotations (not ServiceBusMessage)",
      "max_score": 25
    },
    {
      "name": "Set annotations",
      "description": "Sets message annotations using the annotations property of AmqpAnnotatedMessage, passing a dictionary of annotation key-value pairs",
      "max_score": 20
    },
    {
      "name": "ServiceBusClient initialization",
      "description": "Uses ServiceBusClient.from_connection_string() to create the client",
      "max_score": 10
    },
    {
      "name": "Sender creation",
      "description": "Uses get_queue_sender() method to create a sender for the specified queue",
      "max_score": 5
    },
    {
      "name": "Send messages",
      "description": "Uses send_messages() method to send the annotated message to the queue",
      "max_score": 5
    },
    {
      "name": "Receiver creation",
      "description": "Uses get_queue_receiver() method to create a receiver for the specified queue",
      "max_score": 5
    },
    {
      "name": "Receive messages",
      "description": "Uses receive_messages() method to retrieve messages from the queue",
      "max_score": 5
    },
    {
      "name": "Access raw AMQP message",
      "description": "Accesses the raw_amqp_message property on received ServiceBusReceivedMessage objects to access AMQP-level details",
      "max_score": 15
    },
    {
      "name": "Read annotations",
      "description": "Reads the annotations from raw_amqp_message.annotations property to retrieve the annotation values",
      "max_score": 10
    }
  ]
}