khaimai commited on
Commit
5f234ff
·
verified ·
1 Parent(s): 7e43e16

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -51,7 +51,7 @@ tools = [
51
  }
52
  }
53
  ]
54
- # add this to make model to 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,7 +92,7 @@ tools = [{
92
  }
93
  }]
94
 
95
- # to let the model generate the reasoning first, then the tool uses add type reasoning; without reasoning tool, the model will not output the reasoning
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(