The idea behind chain-of-thought is trivially simple: Instead of directly asking the model to generate an answer, we add a prefix like “Let’s think step by step.”.
Step-by-step answers
Let’s start with the question-answerer and add a parameter to the prompt so that we can see the effect of different prefixes:
chain_of_thought.py
from fvalues import Ffrom ice.recipe import recipedefmake_chain_of_thought_prompt(question:str,answer_prefix:str="") ->str:returnF(f"""Answer the following question:Question: "{question}"Answer: "{answer_prefix}""" ).strip()asyncdefchain_of_thought( question: str = "What would happen if the average temperature in Northern California went up by 5 degrees Fahrenheit?",
answer_prefix:str="Let's think step by step.",) ->str: prompt =make_chain_of_thought_prompt(question, answer_prefix) answer =await recipe.agent().complete(prompt=prompt, stop='"')return answerrecipe.main(chain_of_thought)
Let’s first run the recipe without answer prefix:
pythonchain_of_thought.py--answer-prefix""
We get an answer:
If the average temperature in Northern California went up by 5 degrees Fahrenheit, it would cause more wildfires.
If we provide “Let’s think step by step.” as an answer prefix…
pythonchain_of_thought.py--answer-prefix"Let's think step by step."
…we get a much more elaborate answer:
The first thing that would happen is that the air would heat up. This would cause the water in the air to evaporate more quickly, which would lead to more precipitation in the form of rain and snow. The extra precipitation would cause the rivers to swell and the groundwater to rise. This could lead to flooding in some areas. The extra heat would also cause the snow in the mountains to melt more quickly, which would lead to more water in the rivers and groundwater, and could also cause flooding. The extra heat would also cause the plants to grow more quickly, which would lead to more food for the animals. The extra heat would also cause the animals to become more active, which would lead to more food being eaten and more waste being produced. The extra heat would also cause the bacteria in the soil to become more active, which would lead to more decomposition and more nutrients being released into the soil. The extra heat would also cause the insects to become more active, which would lead to more...
Step-by-step reasoning for concise answers
In the previous example chain-of-thought is used to elicit a more elaborate answer. However, often chain-of-thought is used in cases where all we want to do is improve the correctness of a final answer, without changing the answer format itself.
We can achieve this by separately eliciting the reasoning and the final answer, so that we can more directly compare the answer to the model without chain-of-thought:
answer_by_reasoning.py
from fvalues import Ffrom ice.recipe import recipedefgenerate_reasoning_prompt(question:str) ->str:returnF(f"""Answer the following question:Question: "{question}"Answer: "Let's think step by step.""" ).strip()defgenerate_answer_prompt(question:str,reasoning:str) ->str:returnF(f"""Answer the following question using the reasoning shown below:Question: "{question}"Reasoning: "{reasoning}"Short answer: """" ).strip()asyncdefget_reasoning(question:str) ->str: reasoning_prompt =generate_reasoning_prompt(question) reasoning =await recipe.agent().complete(prompt=reasoning_prompt, stop='"')return reasoningasyncdefget_answer(question:str,reasoning:str) ->str: answer_prompt =generate_answer_prompt(question, reasoning) answer =await recipe.agent().complete(prompt=answer_prompt, stop='"')return answerasyncdefanswer_by_reasoning( question: str = "What would happen if the average temperature in Northern California went up by 5 degrees Fahrenheit?",
) ->str: reasoning =awaitget_reasoning(question) answer =awaitget_answer(question, reasoning)return answerrecipe.main(answer_by_reasoning)
If we now run this script:
pythonanswer_by_reasoning.py
We get a summary of the long reasoning chain:
The average temperature in Northern California going up by 5 degrees Fahrenheit would cause the air to heat up, leading to more precipitation, swelling rivers, flooding, melting snow, faster plant growth, more active animals, and more active bacteria.
Exercise
Let’s apply this to the math problem we saw in the chapter on checking reasoning steps:
Beth bakes 4x 2 dozen batches of cookies in a week. If these cookies are shared amongst 16 people equally, how many cookies does each person consume?
python answer_by_reasoning.py --question "Beth bakes 4x 2 dozen batches of cookies in a week. If these cookies are shared amongst 16 people equally, how many cookies does each person consume?"
The answer:
Each person would consume 12 cookies.
Inspecting the reasoning, we see that something went wrong in step two:
There are 4x2=8 batches of cookies.
Each batch has 24 cookies.
There are 8x24=192 cookies in total.
There are 16 people.
Each person would get 192/16=12 cookies.
Exercise: Combine generating reasoning chains with verifiers to generate more reliable reasoning.
Get feedback on exercise solutions
If you want feedback on your exercise solutions, submit them through this form. We—the team at Ought—are happy to give our quick take on whether you missed any interesting ideas.