Skip to main content

Rasa Middleware Connector

Adds support for middlewares to Rasa connectors. The middlewares run before the message is sent to the Rasa agent allowing text/UserMessage preprocessing.

Why not add a message_preprocessor when sending the message to the Rasa Agent?

You can do it, and you can also add middleware support to the preprocessor.

This module tries to bring more functionality to pre-processing, allowing access to all fields in a UserMessage object and the possibility to cancel a message execution when preprocessing it.

When you set up a default message preprocessor by passing it as a callable argument on the function handle_message (usually called on_new_message on the channels), and it can even call a sequence of middlewares, but it only allows access to the text field on a UserMessage.

Usage

Input Connector

The class InputMiddlewareConnector is an abstract class that you should inherit from, together with the desired connector. It should be the first class.

class SocketInput(InputMiddlewareConnector, SocketIOInput):

You need to implement the methods: get_middlewares, get_on_new_message and create_user_message. And change the connector handle_message route to point to the self.handle_message. All the following examples are extracts from a custom connector based on the SocketIOInput:

def blueprint(self, on_new_message):

    # save Agent handler on object for later reference
    self.on_new_message = on_new_message

    # get the webhook from the super blueprint
    socketio_webhook = super().blueprint(on_new_message)
    self.sio = socketio_webhook.sio

    # swaps default event handler with the desired handler
    self.sio.handlers = socketio_webhook.sio.handlers
    self.sio.handlers['/'][self.user_message_evt] = self.handle_message

    return socketio_webhook

get_on_new_message: this method returns the Rasa Agent handle_message endpoint, usually it is received as the parameter on_new_message on the blueprint function of a handler. (On the example above we save this on self.on_new_message)

get_middlewares: this method should return a list with your middleware objects (created inheriting from BaseMiddleware class) in order of execution. The Rasa Agent handler will be added after the middlewares.

def get_middlewares(self):
    
    return [
        TextCleaner(),
        MessageCollector(self)        
    ]

create_user_message(self, *args, **kwargs): this method returns a UserMessage object containing your message.

def create_user_message(self, sid, data) -> UserMessage:

    # this function receives required data to create a new
    # user message and returns it (based on the official rasa
    # implementation of the socket connector) 
    
    if self.session_persistence:
        if not data.get("session_id"):
            logger.warning(
                "A message without a valid sender_id "
                "was received. This message will be "
                "ignored. Make sure to set a proper "
                "session id using the "
                "`session_request` socketIO event."
            )
            return
        sender_id = data["session_id"]
    else:
        sender_id = sid

    text = data["message"]

    output_channel = SocketIOOutput(self.sio, sender_id, self.bot_message_evt)
    message = UserMessage(
        text, output_channel, sid, input_channel=self.name()
    )
    
    return message

Output Connector

An output middleware connector is very similar to the input one. You should override get_middlewares just like on the input.

One caveat is that OutputMiddlewareConnector should be the first on the inheritance order. Also, there is the need to provide the connector class on get_connector_class:

class SocketOutput(OutputMiddlewareConnector, SocketIOOutput):
...
    def get_connector_class(self):
        return SocketIOOutput

Middlewares

Your middlewares should respect the interface defined in the class BaseMiddleware:

  • set_next(self, next, is_output)
  • compute(self, message: UserMessage)
  • input_compute(self, message: UserMessage)
  • output_compute(self, recipient_id: Text, message: Dict[Text, Any])
  • Attributes: next, is_output

Note the at least input_compute or output_compute should be implemented. If you will only use the middleware as an input middleware you can only implement input_compute, and if its an only output middleware only output_compute needs to be implemented.

set_next: sets where your middleware should send the message after you are done processing it.

compute(self, message: UserMessage): starts the processing of your message. Sends it to the appropriate function (input_compute or output_compute).

input_compute or output_compute: message processing. After processing the message you should call:

  • await self.next(message) if input
  • await self.next(recipient_id, message) if output

Example:

async def input_compute(self, message: UserMessage):

    logger.info("Middleware TextCleaner received message from {}".format(message.sender_id))
    
    message.text = self.clean_message(message.text)
    await self.next(message)

# output_compute not implemented since this is an input only middleware

Release files for rasa-middleware-connector 0.2.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for rasa-middleware-connector 0.2.1
File Size Uploaded
rasa_middleware_connector-0.2.1.tar.gz 5.4 kB Details

Release files / rasa_middleware_connector-0.2.1.tar.gz

Download URL rasa_middleware_connector-0.2.1.tar.gz
Size 5.4 kB
Tags Source
SHA-256 checksum
How to use checksums
c355c2eb511af6a15e933ac951a8f4a4515595191fa759168aa0c73c335962c1
BLAKE2b-256 checksum
How to use checksums
ff1ce5fcfc5559b150271449321ab488da17c48af65d935ea7e5541d87c9f283
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.1.0 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.7.5

Release history Release notifications | RSS feed

This release

0.2.1 This release

1 release file

0.2.0

1 release file

0.1.6

1 release file

0.1.5

1 release file

0.1.4

1 release file

0.1.3

2 release files

0.1.2

1 release file

0.1.1

1 release file

0.1.0

1 release file

0.0.8

1 release file

0.0.7

1 release file

0.0.5

1 release file

0.0.4

1 release file

0.0.3

1 release file

0.0.2

1 release file

0.0.1

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page