├── .gitignore ├── 01_data_prep.py ├── 02_baseline.py ├── 03_ape.py ├── LICENSE ├── README.md ├── metaprompt_template.txt ├── prompt_evaluator.py ├── requirements.txt └── review_prompt_template.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heiko-hotz/automated-prompt-engineering-from-scratch/HEAD/.gitignore -------------------------------------------------------------------------------- /01_data_prep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heiko-hotz/automated-prompt-engineering-from-scratch/HEAD/01_data_prep.py -------------------------------------------------------------------------------- /02_baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heiko-hotz/automated-prompt-engineering-from-scratch/HEAD/02_baseline.py -------------------------------------------------------------------------------- /03_ape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heiko-hotz/automated-prompt-engineering-from-scratch/HEAD/03_ape.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heiko-hotz/automated-prompt-engineering-from-scratch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heiko-hotz/automated-prompt-engineering-from-scratch/HEAD/README.md -------------------------------------------------------------------------------- /metaprompt_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heiko-hotz/automated-prompt-engineering-from-scratch/HEAD/metaprompt_template.txt -------------------------------------------------------------------------------- /prompt_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heiko-hotz/automated-prompt-engineering-from-scratch/HEAD/prompt_evaluator.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heiko-hotz/automated-prompt-engineering-from-scratch/HEAD/requirements.txt -------------------------------------------------------------------------------- /review_prompt_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heiko-hotz/automated-prompt-engineering-from-scratch/HEAD/review_prompt_template.txt --------------------------------------------------------------------------------