PromptWizard: Task-Aware Prompt Optimization Framework
Eshaan Agarwal, Joykirat Singh, Vivek Dani, Raghav Magazine, Tanuja Ganu, Akshay Nambi
Abstract:
Large language models (LLMs) have transformed AI across diverse domains, with prompting being central to their success in guiding model outputs. However, manual prompt engineering is both labor-intensive and domain-specific, necessitating the need for automated solutions. We introduce PromptWizard, a novel, fully automated framework for discrete prompt optimization, utilizing a self-evolving, self-adapting mechanism. Through a feedback-driven critique and synthesis process, PromptWizard achieves an effective balance between exploration and exploitation, iteratively refining both prompt instructions and in-context examples to generate human-readable, task-specific prompts. This guided approach systematically improves prompt quality, resulting in superior performance across 45 tasks. PromptWizard excels even with limited training data, smaller LLMs, and various LLM architectures. Additionally, our cost analysis reveals a substantial reduction in API calls, token usage, and overall cost, demonstrating PromptWizard's efficiency, scalability, and advantages over existing prompt optimization strategies.
Overview of the PromptWizard framework
Process of iterative optimization of instructions
Process of sequential optimization of instruction and examples
Follow these steps to set up the development environment and install the package:
-
Clone the repository
git clone https://github.com/microsoft/PromptWizard cd PromptWizard -
Create and activate a virtual environment
On Windows
python -m venv venv venv\Scripts\activateOn macOS/Linux:
python -m venv venv source venv/bin/activate -
Install the package in development mode:
pip install -e .
- We support GSM8k, SVAMP, AQUARAT and Instruction_Induction(BBII) datasets
- Please note that time taken for prompt optimzation is dependent on the dataset. In our experiments for the above mentioned datasets, it took around 20 - 30 minutes on average.
- Load your dataset
- Follow steps mentioned here
- Fix the configuration and environmental varibles for API calling
- Use
promptopt_config.yamlto set configurations. For example for GSM8k this file can be used - Use
.envto set environmental varibles. For GSM8k this file can be used
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. - Use
- Run the code
- To run PromptWizard on your custom dataset please jump here
- Please note that this code requires access to LLMs via API calling, we use AZURE endpoints for this
- Set the AZURE endpoint configurations in .env
- Follow the steps in demo.ipynb to download the data, run the prompt optimization and carry out inference.
- BBII has many datasets in it, based on the dataset set the configs here
- In configs
task_description,base_instructionandanswer_formatneed to be changed for different datasets in BBII, the rest of the configs remain the same - A demo is presented in demo.ipynb
- Our code expects the dataset to be in
.jsonlfile format - Both the train and test set follow the same format
- Every sample in the
.jsonlshould have 2 fields :question: It should contain the complete question that is to asked to the LLManswer: It should contain the ground truth answer which can be verbose or consize
NOTE : 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
-
Every new dataset needs to have the following
configsfolder to store files for defining optimization hyperparameters and setup configsdatafolder to storetrain.jsonlandtest.jsonlas curated here (this is done in the notebooks).envfile for environment varibles to be used for API calling.py/.ipynbscript to run the code
-
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
- For GSM8k a description like the following can be used
-
base_instruction: Base instruction in line with the dataset- A commonly used base instruction could be
Lets think step by step.
- A commonly used base instruction could be
-
answer_format: Instruction for specifying the answer format- It is crucial to set the
answer_formatproperly to ensure correct extraction bydef extract_final_answer() - Answer format could be :
Then in
At the end, wrap only your final option between <ANS_START> and <ANS_END> tagsdef extract_final_answer()we can simply write code to extract string between the tags
- It is crucial to set the
-
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_identityandgenerate_intent_keywords: Having these helped improve the prompt as they help making the prompt relevant to the task
-
use_synthetic_examplesis a global hyperparameter which can be used to set the type of in-context examples in the final prompt, i.e. it can be synthetic examples or examples from train data or mixture of both- Refer
promptopt_config.yamlfiles in folders present here for the descriptions used for AQUARAT, SVAMP and GSM8k. For BBII refer description.py which has the meta instructions for each of the datasets
- Set the following in promptopt_config.yaml :
-
Create a dataset specific class which inherits
class DatasetSpecificProcessingsimilar toGSM8k(DatasetSpecificProcessing)in demo.ipynb and define the following functions in it- In
def extract_answer_from_output(): This is a dataset specific function, given theanswerfrom the dataset it should extract and return a consize form of the answer. Note that based on the dataset it can also simply return theansweras it is like in case of SVAMP and AQUARAT datasets def extract_final_answer(): This is a LLM output specific function, given the verbose answer from the LLM it should extract and return the consize final answer- Define
def access_answer(): This function takes an input the LLM output, then does the following:- Extracts the consize 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 are there 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
- Extracts the consize answer using
- In
- Using the problem description and initial prompt instruction, PW generates variations of the instruction by prompting LLMs to mutate it. Based on performance, the best prompt is selected. PW incorporates a critique component that provides feedback, thus guiding and refining the prompt over multiple iterations.
- PW also optimizes in-context examples. PW selects a diverse set of examples from the training data, identifying positive and negative examples based on their performance with the modified prompt. Negative examples help inform further prompt refinements.
- Examples and instructions are sequentially optimized, using the critique to generate synthetic examples that address the current prompt’s weaknesses. These examples are integrated to further refine the prompt.
- PW generates detailed reasoning chains via Chain-of-Thought (CoT), enriching the prompt’s capacity for problem-solving.
- PW aligns prompts with human reasoning by integrating task intent and expert personas, enhancing both model performance and interpretability.
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 examplesstyle_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 prompt
Following are some of best pracitices we followed during are experiments
- Regarding the parameters in promptopt_config.yaml
- We found the best performing values for
mutate_refine_iterations,mutation_rounds,refine_task_eg_iterationsto be 3 or 5 - Other parameters have been set to their ideal values.
seen_set_sizecan be increased to 50 andfew_shot_countcan be set based on the use case
- We found the best performing values for
- The prompts generated at the end of the training process are usually very detailed, however user supervision can help tune it further for the task at hand
- Trying both configurations of having synthetic in-context examples or in-context examples from the train set can be tried to find the best prompt based on use case.
PromptWizard consistently outperforms other methods across various thresholds, maintaining the highest p(τ) values, indicating that it consistently performs near the best possible accuracy across all tasks
- The fiqure shows the performance profile curve for the instruction induction tasks. The performance profile curve visualizes how frequently different approaches’ performance is within a given distance of the best performance. In this curve, the x-axis (τ) represents the performance ratio relative to the best-performing method, and the y-axis (p(τ )) reflects the fraction of tasks where a method’s performance is within this ratio. So for a given method, the curve tells what percentage of the tasks are within τ distance to the best performance.
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com. When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repositories using our CLA. This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.
If you make use of our work, please cite our paper:
@misc{agarwal2024promptwizardtaskawarepromptoptimization,
title={PromptWizard: Task-Aware Prompt Optimization Framework},
author={Eshaan Agarwal and Joykirat Singh and Vivek Dani and Raghav Magazine and Tanuja Ganu and Akshay Nambi},
year={2024},
eprint={2405.18369},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2405.18369},
}
For guidelines and best practices related to Responsible AI, please refer to our Responsible AI Guidelines.



