--
Begin Section: Primitives
--
- TransformFxDecorator(transform_fx :str, seed :int)
    Transforms the prompt using a custom python function.
    - param transform_fx :str string that contains the definition of the `transform(prompt, assistant, random_state)` function, which allows you to define custom string transformations in python.
        - `transform` can import any standard python library, or other libraries shown in examples. 
        - `transform` can use random_state, which is an instance of numpy.random.RandomState.
        - `transform` can use assistant() to delegate part of the transformation of the prompt to the assistant.
    - param seed :int random seed.
- RoleplayingDecorator(prefix :str, suffix :str)
    Modifies the prompt by adding prefix and a suffix to it.
    - param prefix :str The prefix to add to the prompt.
    - param suffix :str The suffix to add to the prompt.
--
End Section
--