Eight Prompt Engineering Implementations [Updated]

Eight Prompt Engineering Implementations [Updated]

In essence the discipline of Prompt Engineering is very simple and accessible. But as the LLM landscape develops, prompts are becoming programable and incorporated into more complex Generative AI structures.

I’m currently the Chief Evangelist @ HumanFirst. I explore & write about all things at the intersection of AI & language; ranging from LLMs, Chatbots, Voicebots, Development Frameworks, Data-Centric latent spaces & more.

Considering the image above, the implementation of Prompt Engineering within Large Language Model applications can be divided into eight broad categories:

  1. Static Prompts
  2. Prompt Composition
  3. Prompt Templates
  4. Contextual Prompts
  5. Prompt Chaining
  6. Prompt Pipelines (Retrieval Augmented Generations)
  7. Autonomous Agents
  8. Prompt Tuning / Soft Prompts
No alt text provided for this image

Static Prompts

The generative capabilities of LLMs are one of their key features which can be leveraged; with Prompt Engineering as the avenue with which data is presented and hence dictate the way the LLM executes on the data.


Prompts can follow a zero, single or few shot learning approach. The generative capabilities of LLMs are greatly enhanced by following a one-shotor few-shot learning approach by including example data in the prompt.

A powerful tool is to show LLMs via examples within a prompt how to go about and format output.

A static prompt is just that, plain text with no templating, injection or external information.

Prompt Engineering, Text Generation & Large Language ModelsText Generation Is A Meta Capability Of Large Language Models & Prompt Engineering Is Key To Unlocking It. You cannot…cobusgreyling.medium.com

Prompt Templates

The next step from static prompts is prompt templating.

Prompt templating is where a static prompt is converted into a template with key values being replaced with placeholders. The placeholders are replaced with application values/variables at runtime.

Some refer to templating as entity injection or prompt injection.

In the template example below from DUST you can see the placeholders of ${EXAMPlES:question}, ${EXAMPlES:answer} and ${QUESTIONS:question} and these placeholders are replaced with values at runtime.

Prompt templating allows for prompts to the storedre-usedshared, and programmed. Generative prompts can be incorporated into programs for programming, storage and re-use.

OpenAI Playground Start & Restart Prompt Injection

Prompt Composition

A next step is to have a library of prompt templates which are combined at run-time to create a more advanced prompt. As prompt composition add a level of flexibility and programability, it also introduces quite a bit of complexity.


The notebook in the article below illustrates how a contextual prompt is composed or constituted from different templates, each template has placeholders for variable injection. Hence part of a prompt can be reused.

LangChain & The Principle Of Composition

Contextual Prompts

Even for LLMs, context is very important for increased accuracy and solving for hallucination. From the examples in the article below it is clear that a little context can go a long way in improving the accuracy of engineered prompts.

Contextual prompting negates LLM hallucination to a large extent.

Contextual prompting provides a frame of reference to the LLM when a response is generated.

Preventing LLM Hallucination With Contextual Prompt Engineering — An Example From OpenAI

Prompt Chaining

Prompt Chaining, also referred to as Large Language Model (LLM) Chaining, is the notion of creating a chain consisting of a series of model calls. This series of calls follow on each other with the output of one node in the chain serving as the input of the following.

Each chain node is intended to target small and well scoped sub-tasks, hence one or more LLMs is used to address multiple sequenced sub-components of a task.

In essence prompt chaining leverages a key principle in prompt engineering, known as chain of thought prompting.

The principle of Chain of Thought prompting is not only used in chaining, but also in Agents and Prompt Engineering.

Chain of thought prompting is the notion of decomposing a complex task into refined smaller tasks, building up to the final answer.

Prompt Chaining

Prompt Pipelines

In Machine Learning a pipeline can be described as and end-to-end construct, which orchestrates a flow of events and data.


The pipeline is kicked-off or initiated by a trigger; and based on certain events and parameters, a flow is followed which results in an output.

In the case of a prompt pipeline, the flow is in most cases initiated by a user request. The request is directed to a specific prompt template.

Prompt Pipelines can also be described as an intelligent extension to prompt templates.

The variables or placeholders in the pre-defined prompt template are populated (also known as prompt injection) with the question from the user, and the knowledge to be searched from the knowledge store.

This process can be highly dynamic and autonomous, crafting the desired prompt with the given scenario containing contextual information for few-shot training.

Generative AI Prompt Pipelines

Autonomous Agents

With LLM related operations there is an obvious need for automation. Currently this automation is in the form of what is called agents.

Prompt Chaining is the execution of a predetermined and set sequence of actions.

The attraction of Agents is that Agents do not follow a predetermined sequence of events. Agents can maintain a high level of autonomy.

Agents have access to a set of tools and any request which falls within the ambit of these tools can be addressed by the agent. The Execution pipeline lends autonomy to the Agent and a number of iterations might be required until the Agent reaches the Final Answer.

Agents

Prompt Tuning / Soft Prompts

Soft prompts are created during the process of prompt tuning.


Unlike hard prompts, soft prompts cannot be viewed and edited in text. Prompts consist of an embedding, a string of numbers, that derives knowledge from the larger model.

So for sure, a disadvantage is the lack of interpretability of soft prompts. The AI discovers prompts relevant for a specific task but can’t explain why it chose those embeddings. Like deep learning models themselves, soft prompts are opaque.

Soft prompts act as a substitute for additional training data. Researchers recently estimated that a good language classifier prompt is worth hundreds to thousands of extra data points.

Prompt Tuning, Hard Prompts & Soft Prompts


David Youngbl👀d

|§| Generative AI Prompt Engineer, Language Programmer, Context-Architect & Artist |§| Polyoptic Polymath and Problem Solver |§| Serial Autodidact |§| Sys3-🤔 |§|(∞ ➠ {0➠1} ➠♻)|§| {Ne0-Reπ'AI'ssaπce}|§| #ally 💮|§|

9mo

Cobus Greyling, This. Is. Epic. !!!! I was literally just messing with a prompt-function I've been working on with GPT for performing what I called, 'Context-Chaining' to (attempt to) ensure that GPT is able to maintain continuity, even past the limits of it's typical context window to help it solve for a longer continuous project within one session. Here's a snippet of it as an example: "Remember to chain your context related to the instructions, plan, and work you do throughout your responses throughout the session as to not lose track along the way. Do this by providing yourself with breadcrumbs in every response, utilizing code snippets(Only applies in code interpreter or session with plugins) , and remind yourself to write them at the end, and read them at the beginning of each following response." 😎

  • No alternative text description for this image

To view or add a comment, sign in

Insights from the community

Others also viewed

Explore topics