Skip to main content
Version: 3.17

ai-prompt-decorator

Description#

The ai-prompt-decorator Plugin modifies user input prompts by prefixing and appending pre-engineered prompts to set contexts in content generation. This practice helps the model operate within desired guidelines during interactions.

Plugin Attributes#

NameTypeRequiredDefaultValid valuesDescription
prependarrayConditionally*An array of prompt objects to be prepended.
prepend.rolestringTrue[system, user, assistant]Role of the message.
prepend.contentstringTruelength >= 1Content of the message (prompt).
appendarrayConditionally*An array of prompt objects to be appended.
append.rolestringTrue[system, user, assistant]Role of the message.
append.contentstringTruelength >= 1Content of the message (prompt).

* Conditionally Required: At least one of prepend or append must be provided.

Examples#

The following examples will be using OpenAI as the Upstream service provider. Before proceeding, create an OpenAI account and an API key. You can optionally save the key to an environment variable as such:

export OPENAI_API_KEY=<YOUR_OPENAI_API_KEY>

If you are working with other LLM providers, please refer to the provider's documentation to obtain an API key.

Prepend and Append Messages#

The following example demonstrates how to configure the ai-prompt-decorator Plugin to prepend a system message and append a user message to the user input message. The Plugin is used together with the ai-proxy Plugin, which forwards requests to OpenAI.

note

You can fetch the admin_key from config.yaml and save to an environment variable with the following command:

admin_key=$(yq '.deployment.admin.admin_key[0].key' conf/config.yaml | sed 's/"//g')

Send a POST request to the Route specifying the model and a sample message in the request body:

curl "http://127.0.0.1:9080/openai-chat" -X POST \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-4",
"messages": [{ "role": "user", "content": "What is mTLS authentication?" }]
}'

You should receive a response similar to the following:

{
"choices": [
{
"finish_reason": "stop",
"index": 0,
"message": {
"content": "Mutual TLS (mTLS) authentication is a security protocol that ensures both the client and server authenticate each other's identity before establishing a connection. This mutual authentication is achieved through the exchange and verification of digital certificates, which are cryptographically signed credentials proving each party's identity. In contrast to standard TLS, where only the server is authenticated, mTLS adds an additional layer of trust by verifying the client as well, providing enhanced security for sensitive communications.\n\nThink of mTLS as a secret handshake between two friends meeting at a club. Both must know the handshake to get in, ensuring they recognize and trust each other before entering.",
"role": "assistant"
}
}
],
"created": 1723193502,
"id": "chatcmpl-9uFdWDlwKif6biCt9DpG0xgedEamg",
"model": "gpt-4o-2024-05-13",
"object": "chat.completion",
"system_fingerprint": "fp_abc28019ad",
"usage": {
"completion_tokens": 124,
"prompt_tokens": 31,
"total_tokens": 155
}
}