In the previous chapter, Content Structure - Prompt Hub, we explored the "Recipe Book" of the projectβa library of copy-pasteable prompts to get jobs done quickly.
But where do these recipes come from? Who discovered that asking an AI to "think step-by-step" makes it smarter?
Welcome to Chapter 8: Research & Papers.
If the Prompt Hub is the Kitchen where we cook, the Research section is the Laboratory where the science is discovered. This section of the guide tracks the academic papers that define the field of Prompt Engineering.
Artificial Intelligence moves incredibly fast. Every day, people on Twitter or Reddit claim to have found a "magic word" that fixes everything.
The Problem: You see a post claiming: "If you tell the AI to take a deep breath, it solves math better." Is this true? Or is it just a random guess?
The Solution: The Research & Papers section is the source of truth. It curates peer-reviewed academic studies. When you read a technique here, you know it has been tested, measured, and proven by scientists at places like Google, OpenAI, or major universities.
This section of the repository (pages/research/) is less about "how-to" guides and more about "bibliography." It is organized to help you trace the history of ideas.
Let's say you are using the Chain-of-Thought technique we learned about in Content Structure - Techniques. You want to know if it works on all models or just big ones.
Goal: Find the original source of "Chain-of-Thought" to understand its limitations.
How to use the Research Section:
You browse the list and find an entry like this:
Chain-of-Thought Prompting Elicits Reasoning in Large Language Models
Jason Wei, et al. (2022)
By opening that link and reading the "Abstract" or "Conclusion," you learn a crucial fact: Chain-of-Thought only works well on models larger than 100 Billion parameters.
If you are using a tiny model on your laptop, this research tells you not to bother with this technique. You just saved yourself hours of frustration by checking the science!
While this section looks like a list on the website, it is built using Markdown files, just like the rest of the guide.
The repository typically organizes these by topic or by year.
If you look inside the project folder, you might see:
pages/
βββ research/
βββ references.md # The main list of papers
βββ llm-papers.md # Papers specifically about Models
βββ techniques.md # Papers specifically about Prompting
When you click "Research" in the navigation bar, the website renders the references.md file.
Here is the flow of information when a user wants to verify a claim:
How do we add a new paper to the guide? It is very simple. We edit the Markdown file and add a link.
However, to keep it clean, the guide uses a specific format.
pages/research/references.mdOpen this file, and you will see a list of bullet points.
# Research & Papers
## 2023
- [Tree of Thoughts: Deliberate Problem Solving](https://arxiv.org/abs/2305.10601) - Yao et al. (2023)
- [Automatic Prompt Engineering (APE)](https://arxiv.org/abs/2211.01910) - Zhou et al. (2022)
## 2022
- [Chain-of-Thought Prompting Elicits Reasoning](https://arxiv.org/abs/2201.11903) - Wei et al. (2022)
Breakdown of a Research Entry:
[Title](URL) - This makes the title clickable.- Authors (Year) - This tells the reader who wrote it and when.The beauty of this project is how the Research chapter connects to the Techniques chapter.
In pages/techniques/cot.md (Chain-of-Thought), the author will include a link back to this research file.
<!-- Inside the Techniques Chapter -->
# Chain-of-Thought
This technique was first introduced by [Wei et al. (2022)](../research/references.md).
This creates a web of knowledge. You can learn how to do it (Techniques), and then click the link to learn why it works (Research).
In this chapter, we explored Content Structure - Research & Papers.
We have now finished exploring the Content.
We have covered the Introduction, Techniques, Applications, Models, Risks, Prompt Hub, and finally, the Research behind it all.
Now, we are going to change gears. How does this text actually become a website? What software turns these Markdown files into the beautiful pages you see in your browser?
It is time to look at the Code behind the content.
Generated by Code IQ