Update README.md
Browse files
README.md
CHANGED
@@ -51,7 +51,7 @@ tools = [
|
|
51 |
}
|
52 |
}
|
53 |
]
|
54 |
-
# add this to make model
|
55 |
tools.append({"type": "reasoning"})
|
56 |
messages = [{"role": "user", "content": "What is the weather in Istanbul and Singapore respectively?"}]
|
57 |
|
@@ -92,7 +92,7 @@ tools = [{
|
|
92 |
}
|
93 |
}]
|
94 |
|
95 |
-
#
|
96 |
tools.append({"type": "reasoning"})
|
97 |
|
98 |
client.chat.completions.create(
|
|
|
51 |
}
|
52 |
}
|
53 |
]
|
54 |
+
# add this to make the model generate the reasoning first
|
55 |
tools.append({"type": "reasoning"})
|
56 |
messages = [{"role": "user", "content": "What is the weather in Istanbul and Singapore respectively?"}]
|
57 |
|
|
|
92 |
}
|
93 |
}]
|
94 |
|
95 |
+
# Add reasoning type to make the model generate the reasoning first
|
96 |
tools.append({"type": "reasoning"})
|
97 |
|
98 |
client.chat.completions.create(
|