Update README.md
Browse files
README.md
CHANGED
@@ -74,6 +74,8 @@ model = AutoModelForCausalLM.from_pretrained(
|
|
74 |
)
|
75 |
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
76 |
|
|
|
|
|
77 |
# CoT
|
78 |
messages = [
|
79 |
{"role": "system", "content": "Please reason step by step, and put your final answer within \\boxed{}."},
|
|
|
74 |
)
|
75 |
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
76 |
|
77 |
+
prompt = "Find the value of $x$ that satisfies the equation $4x+5 = 6x+7$."
|
78 |
+
|
79 |
# CoT
|
80 |
messages = [
|
81 |
{"role": "system", "content": "Please reason step by step, and put your final answer within \\boxed{}."},
|