PromptWizard: Task-Aware Prompt Optimization Framework
Eshaan Agarwal, Joykirat Singh, Vivek Dani, Raghav Magazine, Tanuja Ganu, Akshay Nambi
Overview of the PromptWizard framework

PromptWizard is a discrete prompt optimization framework that employs a self-evolving mechanism where the LLM generates, critiques, and refines its own prompts and examples, continuously improving through iterative feedback and synthesis. This self-adaptive approach ensures holistic optimization by evolving both the instructions and in-context learning examples for better task performance.
Three key components of PromptWizard are the following :
Stage 1: Iterative optimization of instructions

Stage 2: Sequential optimization of instruction and examples

Follow these steps to set up the development environment and install the package:
1) Clone the repository
git clone https://github.com/microsoft/PromptWizard
cd PromptWizard
2) Create and activate a virtual environment
On Windows
```
python -m venv venv
venv\Scripts\activate
```
On macOS/Linux:
```
python -m venv venv
source venv/bin/activate
```
3) Install the package in development mode:
pip install -e .
There are three main ways to use PromptWizard: - Scenario 1 : Optimizing prompts without examples - Scenario 2 : Generating synthetic examples and using them to optimize prompts - Scenario 3 : Optimizing prompts with training data
NOTE : Refer this notebook to get a detailed understanding of the usage for each of the scenarios. This serves as a starting point to understand the usage of PromptWizard
promptopt_config.yaml to set configurations. For example for GSM8k this file can be used.env to set environmental varibles. For GSM8k this file can be used
```
USE_OPENAI_API_KEY="XXXX"
# Replace with True/False based on whether or not to use OPENAI API key# If the first variable is set to True then fill the following two OPENAI_API_KEY="XXXX" OPENAI_MODEL_NAME ="XXXX"
# If the first variable is set to False then fill the following three AZURE_OPENAI_ENDPOINT="XXXXX" # Replace with your Azure OpenAI Endpoint
OPENAI_API_VERSION="XXXX" # Replace with the version of your API
AZURE_OPENAI_CHAT_DEPLOYMENT_NAME="XXXXX" # Create a deployment for the model and place the deployment name here. ``` - Run the code - To run PromptWizard on your custom dataset please jump here
task_description,base_instruction and answer_format need to be changed for different datasets in BBII, the rest of the configs remain the same.jsonl file format.jsonl should have 2 fields :
1) question : It should contain the complete question that is to asked to the LLM
2) answer : It should contain the ground truth answer which can be verbose or conciseNOTE : Refer to demos folder for examples of folders for four datasets. The .ipynb in each of the folders shows how to run PromptWizard on that particular dataset. A similar procedure can be followed for a new dataset. Below is the explanation of each of the components of the .ipynb and the dataset specifc folder structure in detail
1) Every new dataset needs to have the following
- configs folder to store files for defining optimization hyperparameters and setup configs
- data folder to store train.jsonl and test.jsonl as curated here (this is done in the notebooks)
- .env file for environment varibles to be used for API calling
- .py/.ipynb script to run the code
2) Set the hyperparameters like number of mutations, refine steps, in-context examples etc.
- Set the following in promptopt_config.yaml :
- task_description : Desciption of the task at hand which will be fed into the prompt
- For GSM8k a description like the following can be used
You are a mathematics expert. You will be given a mathematics problem which you need to solve
- base_instruction : Base instruction in line with the dataset
- A commonly used base instruction could be
Lets think step by step.
- answer_format : Instruction for specifying the answer format
- It is crucial to set the answer_format properly to ensure correct extraction by def extract_final_answer()
- Answer format could be :
At the end, wrap only your final option between <ANS_START> and <ANS_END> tags
Then in def extract_final_answer() we can simply write code to extract string between the tags
- ```seen_set_size``` : The number of train samples to be used for prompt optimization
- In our experiments we set this to be 25. In general any number between 20-50 would work
- ```few_shot_count``` : The number of in-context examples needed in the prompt
- The value can be set to any positive integer based on the requirement
- For generating zero-shot prompts, set the values to a small number (i.e between 2-5) and after the final prompt is generated the in-context examples can be removed. We suggest using some in-context examples as during the optimization process the instructions in the prompt are refined using in-context examples hence setting it to a small number will give better zero-shot instructions in the prompt
- ```generate_reasoning``` : Whether or not to generate reasoning for the in-context examples
- In our experiments we found it to improve the prompt overall as it provides a step-by-step approach to reach the final answer. However if there is a constraint on the prompt length or number of prompt tokens, it can be turned off to get smaller sized prompts
- ```generate_expert_identity``` and ```generate_intent_keywords``` : Having these helped improve the prompt as they help making the prompt relevant to the task
- Refer ```promptopt_config.yaml``` files in folders present [here](demos) for the descriptions used for AQUARAT, SVAMP and GSM8k. For BBII refer [description.py](demos/bbh/description.py) which has the meta instructions for each of the datasets
- Following are the global parameters which can be set based on the availability of the training data
- ```run_without_train_examples``` is a global hyperparameter which can be used when there are no training samples and in-context examples are not required in the final prompt
- ```generate_synthetic_examples``` is a global hyperparameter which can be used when there are no training samples and we want to generate synthetic data for training
- ```use_examples``` is a global hyperparameter which can be used to optimize prompts using training data
3) Create a dataset specific class which inherits class DatasetSpecificProcessing similar to GSM8k(DatasetSpecificProcessing) in demo.ipynb and define the following functions in it
1) In def extract_answer_from_output() : This is a dataset specific function, given the answer from the dataset it should extract and return a concise form of the answer. Note that based on the dataset it can also simply return the answer as it is like in case of SVAMP and AQUARAT datasets
2) def extract_final_answer() : This is a LLM output specific function, given the verbose answer from the LLM it should extract and return the concise final answer
3) Define def access_answer() : This function takes an input the LLM output, then does the following:
- Extracts the concise answer using def extract_final_answer() from the LLM output as defined above
- Evaluates the extracted answer with the ground truth and retuns
- Extracted answer from LLM output
- Boolean value indicating if answer is correct or not
- The evaluation done here is dataset specific, for datasets like GSM8k, SVAMP and AQUARAT which have final answer as an number, we can do a direct match between the numbers generated and the ground truth, while for datasets where the answer is a sentence or paragraph it would be better to do evaluation with llm-as-a-judge, to compare the generated and ground truth paragraph/sentence. An example is available in def access_answer() in this notebook
Here we define the various hyperparameters used in prompt optimization process found in promptopt_config.yaml
mutate_refine_iterations: Number of iterations for conducting mutation of task description
followed by refinement of instructionsmutation_rounds: Number of rounds of mutation to be performed when generating different stylesrefine_task_eg_iterations: Number of iterations for refining task description and in context examples style_variation: Number of thinking style variations to be used in prompt mutationquestions_batch_size: Number of questions to be asked to LLM in a single batch, during training stepmin_correct_count: Minimum number of batches of questions to correctly answered, for a prompt to be considered as performing goodmax_eval_batches: Maximum number of mini-batches on which we should evaluate the prompttop_n: Number of top best prompts to be considered from scoring stage for the next stageseen_set_size: Number of samples from trainset to be used for trainingfew_shot_count: Number of in-context examples required in final promptFollowing are some of best pracitices we followed during are experiments
$ claude mcp add PromptWizard \
-- python -m otcore.mcp_server <graph>