Chore/O3 MINI (#3962)

* add gemini flash

* add gemin flash to vertex

* add gemin-1.5-flash-preview to vertex

* add azure gpt 4o

* add claude 3.5 sonnet

* add mistral nemo

* add groq llama3.1

* add gpt4o-mini to azure

* o1 mini

* add groq llama 3.2

* update anthropic models

* add 3.5 haiku

* update vertex embedding models

* add azure o1 models

* add o3 mini

* add wolframalpha tool
This commit is contained in:
Henry Heng
2025-02-01 01:17:40 +00:00
committed by GitHub
parent 81cd904b73
commit a49177f7fb
5 changed files with 76 additions and 0 deletions
@@ -211,6 +211,9 @@ class ChatOpenAI_ChatModels implements INode {
streaming: streaming ?? true
}
if (modelName === 'o3-mini') {
delete obj.temperature
}
if (maxTokens) obj.maxTokens = parseInt(maxTokens, 10)
if (topP) obj.topP = parseFloat(topP)
if (frequencyPenalty) obj.frequencyPenalty = parseFloat(frequencyPenalty)