Prompt-Engineering-Guide/guides/prompt-miscellaneous.md

26 lines
1.1 KiB
Markdown
Raw Normal View History

2023-02-09 11:56:56 +08:00
# Miscellaneous Topics
In this section, we discuss other miscellaneous but important topics in prompt engineering.
2023-02-17 14:42:29 +08:00
**Note that this section is under construction.**
2023-02-19 00:40:32 +08:00
## Program-Aided Language Models
[Gao et al., (2023)](https://arxiv.org/abs/2211.10435) presents a method that uses LLMs to read natural language problems and generate programs as the intermediate reasoning steps. Coined, program-aided language models (PAL), it differs from chain-of-thought prompting in that instead of using free-form text to obtain solution it offloads the solution step to a programmatic runtime such as a Python interpreter.
Full example coming soon!
2023-02-09 11:56:56 +08:00
2023-02-09 18:12:38 +08:00
---
2023-02-09 11:56:56 +08:00
## Multimodal Prompting
2023-02-17 14:42:29 +08:00
In this section, we will cover some examples of multimodal prompting techniques and applications that leverage multiple modalities as opposed to just text alone.
2023-02-19 00:40:32 +08:00
Examples coming soon!
2023-02-17 14:42:29 +08:00
---
## GraphPrompts
[Liu et al., 2023](https://arxiv.org/abs/2302.08043) introduces GraphPrompt, a new prompting framework for graphs to improve performance on downstream tasks.
2023-02-17 15:52:14 +08:00
More coming soon!
---
[Previous Section (Adversarial Prompting)](./prompt-adversarial.md)